What is an authorization list?
Answer / rohit katarya
A lists of two or more user Ids & their authorities for system resources. The system identifies it an object type *AUTL
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the Difference between command attention key and command function key ?
How to read data from *LDA (Local Data Area) in RPGLE program without using IN opcode?
what is maximum number of arrays allowed in rpg?
What is the purpose of 'CPYTOIMPF' command?
6 Answers Aditya Birla, Redington,
what is the maximum number of subroutines allowed in rpg?
What are the types of Signature validation?
define a output queue?
what are the different methods to access seu?
what does dfu program you to do on a record?
when is a tag statement used in rpg?
What is the difference between non-join logical files and join logical files?
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