What is data structure in as400? What is the use of data structure?
No Answer is Posted For this Question
Be the First to Post Answer
what is sessional error or divice error in rpg IV?..when will it happens...Give few examples?
Difference Between Ca & Cf?
what does dfu program you to do on a record?
what are activation group and what are its types.?
How to know message id (errorid) in msgfile when error is occurred on screen ? WRKMSF will display all error id but i want to know error id based on error msg only?
1 Answers IBM, Ignis Technologies, SSR,
what is the maximum number of parameters allowed in clp?
what are the basic features of seu?
What is the purpose of the following? I 'CLOSED' C STAT01 I 'OPEN' C STAT02
Which is better LF or OPNQRYF ? When should we use LF and when should we use OPNQRYF ?
when would you use or not use this approach?
What is the difference between Array and Table?
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