can error messages as a result of a comp, range or values keyword be overridden?
Answer Posted / dinesh kumar sinha
Yes, through CHKMSGID keyword.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain The Keywords Edtcde & Edtwrd?
How to reverse the string in rpg
at what level s,o are defined and what they will do?
define the purpose of the %sst function?
WHAT is STORED PROCEDURE CONCEPT IN AS400 WITH EXAMPLE?
define subsystem?
why is as/400 called object oriented machine?
what is the maximum number of parameters allowed in rpg?
where will control be passed after the execution of the *pssr subroutine if the factor2 of the endsr is blank ?
What is the difference between non-join logical files and join logical files?
what are the important factors in error message subfile ?
which are the relational operators in rpg?
what is a keyed physical file?
what is the use of sflend keyword?
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