As400 Command to find the Name of the Program to which a
Particular Module is Bound..?
Ex: IC210AMR (*MODULE) is bound with Other Modules which
Forms Program Object as IC210ABP(*PGM) . As400 Command to
find the IC210ABP Using IC210AMR..? Thanks
Answers were Sorted based on User's Feedback
Answer / sachin
Try this..>
DSPPGMREF PGM(*LIBL/*ALL)
OUTPUT(*OUTFILE)
OBJTYPE(*ALL)
OUTFILE(QTEMP/TT)
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / alagan v
I think, DSPPGM will work for this question. It will show all the details for modules, service programs and so on.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / rakesh
writing thanks in advance wont give u correct answer Joy sir..
You have AS400 system in your hand ...do some operation u
will get it..
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / sreedhar reddy
I do not have answer but maintaining standards that is naming conventions we can track them easily.
But it is good question. Thanks.
| Is This Answer Correct ? | 1 Yes | 1 No |
explain sflclr, sflend, sfldlt, and sflcsrrrn?
what r drawbacks of OPM? Why do we go for ILE RPG?
how to display all the members records in a physical file without using ovrdbf?
What are the necessary keywords required to code a message subfile?
What are the commands that can be executed in CLP but not in RPG? Why?
How to identify the object has compiled with the debug view as *source without using STRDBG?
Hi,This is raju.Can any body give me the real experience answer for this question? 1.What is the significance of *MAP and *DROP in the CPY command?
I have learnt through Net that Debugging a Batch job involves 1. Submit the job with the HOLD (*YES) parameter: SBMJOB HOLD(*YES) or Hold the job queue that before submitting the job by using the HLDJOBQ command. 2. Determine the job name, user, and number of the submitted job by using the WRKSBMJOB command. 3. Type the Start Service Job command on your screen: STRSRVJOB JOB(job name/user/number) 4. Type the Start Debug command on your screen: STRDBG 5. Release the job in the jobq. Type WRKSBMJOB and then put a 6 beside the job to be released and press enter, or, if the job queue was put on hold, release the job queue with the RLSJOBQ command. 6. A display appears when the job is ready to start, saying that you can now begin debugging the job. Press F10 to show the Command Entry display. 7. Now you can start debugging by entering an Add Break Point command: ADDBKP 8.ENDDBG 9.ENDSRVJOB I tried this for RPG/400 Program and up to six steps of the above it's ok,but for me no source is displayed and i typed DSPMODSRC in Command line but still i can't see the sourceif i press F.10 and enter command ADDBKP i don't know how to add break points through it,usually i add break points using F.6 for Interactive job debugs,but since this is batch i don't know sir,Please help me out. I was asked this question in a interview,i know only RPG/400 and i’m asking for debugging of RPG/400 program only sir. or is it only possible to debug BATCH RPG ILE JOB and it is not possible to debug BATCH RPG/400 JOB kindly help me out sir
1) How to retrieve RRN through RPG ? 2) How to pass parameter by value ? 3) How to trap the error through the RPG/400
10 Answers IBM, Tech Mahindra,
I have a file .In that file i have 3 fields. Those fields are eno, ename, esal.Keyfield is eno. In that file i have data like this for eno 1,2,3,4,5. Now i need to display 2nd record. That means i need to set the pointer on 2nd record... Then, write the complete rpg program using setll.
in rpg could u please tell me errors types and meanings like 3030 that ....
I have some doubts on subfile----------- -----I wrote a prog on subfile to display the records. Every thing is clear but i defined a field called "opt" as input field in subfile record format from that input field i wish to enter into new screen called "EDIT" which i created it as a separate RCD in display file. i gave opt as 2 for edit just like in WRKMBRPDM screen please telll me the code and how can i code for it in RPG.