describe the difference between the dowxx and douxx operations?
Answer Posted / sukhvir singh
DOWxx : If the condition becomes true, then only the group of instructions allowed executing.
DOUxx : Irrespective of condition, it will execute at least one time.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
list some of the commonly used commands for debugging?
what is the syntax for plist?
what is the maximum number of parameters allowed in rpg?
what is a join logical file?
how do you use exceptional write in c specs?
how can database records be read without lock ?
what is the sequence when using cursor?
what are the various types of device files?
if we tried to move year part of *iso date into a field of length 3, what will happen ?
how can I start a page in a new window?
what are indicators?
what is externally described file ?
under given circumstances, my cgi should link to another site. How to implement this?
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
How to reverse the string in rpg