how do you use commitment control in rpg program ?
Answer / satyanarayan singh
Using COMIT operation. Makes all changes to the files that have been specified in output operation since the previous COMIT or the begining of operations under commitment control(if there has been no previous COMIT or ROLBK operation).
Is This Answer Correct ? | 0 Yes | 0 No |
Service Program : S1 Modules in S1 : M1 M1 having two procedures : ADD, SUB Current Binder Language STRPGMEXP PGMLVL(*CURRENT) EXPORT SYMBOL("ADD") EXPORT SYMBOL("SUB") ENDPGMEXP Doubt: I need to add one new Module to the Service Program M2 having one procedure ‘MULT’ How to add this new module to the service program S1 ? If I need to recreate the service program again, Do I need to mention the Module M1 again while recreating along with new Module M2? There is no Binding Directory. Binder language structure will be like this STRPGMEXP PGMLVL(*CURRENT) EXPORT SYMBOL("ADD") EXPORT SYMBOL("SUB") EXPORT SYMBOL("MULT") ENDPGMEXP STRPGMEXP PGMLVL(*PREVIOUS) EXPORT SYMBOL("ADD") EXPORT SYMBOL("SUB") ENDPGMEXP
What is the default access path of a file?
what is default data type for the fields(sub fields) defined in data structures in rpg?
How many types of jobs?what is difference between interactive and batch and submited jobs?
why we use binding directory and service pgm
define a shared access path?
how many printer files can be defined in f specs ?
What Is Default Data Type (if You Define Decimals '0') In Physical File?
what is the function of cpyf command?
What is the use of OVRDBF ?
What is the maximum number of times Multiple Occurrences DS can occur in a program?
OVRDBF FILE(xxx) TOFILE(libl/filename) share(*yes) In which scenario is share(*yes) used? could any one explain with an example?