what is the maximum number of parameters allowed in clp?
Answers were Sorted based on User's Feedback
how do you use commitment control in rpg program ?
What is difference between CAT, TCAT, BCAT?
what is the use of jdftval in join logical file?
what are the different types of arrays?
maximum number of subfiles that can defined in a rpg program for one display file is?
What is the use purpose of CRTCMD?
what is the difference between udate and the system date?
why we sometimes use same file name in FILE and TOFILE in OVRDBF and sometimes different??please tell
What is the difference between keys of a Physical file and the keys of a logical file?
2 Answers Bank Of America, BoA,
what would be the effect on the field where reverse image, underline and highlight display attributes are active ?
how many files can be defined in f specs?
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