what is the command to rtrieve system date?
options:1.rtvsysval 2.rtvjoba 3.rtvjobd 4.both a and b
Answer Posted / jinoge
i hope both a and b give others answer
| Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
what are the different opcodes available in rpg for database access ?
which are the member types which seu supports?
what is message file?
when are the unique constraints executed?
how many maximum spaces could be given in o specs?
what is the syntax for plist?
explain the difference between defining subfile and message-subfile?
what are the different types of data areas?
what are the different commands used in rlu ?
what are the three types of keywords associated with printer file ?
What is file information data structure(infds) in as400?
what opcode will be used to test the zone of a character field?
why is as/400 called object oriented machine?
How to Define a Procedure in RPG?
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