[stackoverflow] [progress Openedge Abl] Is It Possible To Call Progress Program (.p File)...

Status
Not open for further replies.
S

Santosh

Guest
Here's a Progress program that creates a record in the Symix database:

create audit.
assign audit.table_name = "JavaSample"
audit.key_id = "12345"
audit.field_name = "<FieldName>"
audit.audit_dt = today
audit.audit_tm = time
audit.audit_user_id = "javauser".


I want to call this .p file from the java code.

Continue reading...
 
Status
Not open for further replies.
Top