How can we find from which source the program has been
compiled for a given RPGLE program object?
Answers were Sorted based on User's Feedback
Answer / swetha p rao
Using DSPPGM command we can find out
1. Give DSPPGM PGMNAME in command line and press enter.
2. Press Enter twice
3. Choose option 5 to display description
4. There it gives the values from which source it is
compiled.
Is This Answer Correct ? | 20 Yes | 2 No |
Answer / swetha p rao
when you Take 14 + F4 for the Source in QRPGLESRC/PRDSRC
and compile the program in QRPGLESRC/DEVSRC.
WRKOBJ will not give information but DSPPGM will give the
information.
Is This Answer Correct ? | 7 Yes | 1 No |
Answer / swathi
1.For program:DSPPGM , Provide program name & library name.
Then it will give the source physicsl name.
2.For any objects:DSPOBJD,Provide object name & library name .
Then it will give the source physical file name.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / swadesh.yadav
use the WRKOBJ command,
wrkobj obj-name (press enter)
now select option 8 for Dispay description.
Is This Answer Correct ? | 2 Yes | 13 No |
What is the purpose of OVRATA keyword ?
how to write code for singlepage in sqlrpgle with update ?
what is the maximum number of fields under a record format of physical file?
how does union file maintains record formats?
what are the different types of arrays?
How to change file attributes such as size, file wait time, record wait time etc., permanently?
A phisical file has two fields like 1) Account No(10,0) 2)Phone No(15,0)Unique on both fields?Please give me the answer for this?
What is the purpose of Level Check parameter in a Physical file?
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
Difference between NOPASS & OMIT?
How many PARM statement can we use in a CL program?
if dspatr(pc) and csrloc were specified for a format, which keyword would have priority?