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

Answers were Sorted based on User's Feedback



I have learnt through Net that Debugging a Batch job involves 1. Submit the job with the HOLD..

Answer / sakthi

If you are not getting the source after entering DSPMODSRC
means then you have to check whether the source is in the
right library. SOmetimes the control may point to someother
library and hence you won't get the source to add
breakpoint.
Also make sure that you have compiled the source with
*SRCDBG or *SOURCE.

Is This Answer Correct ?    10 Yes 2 No

I have learnt through Net that Debugging a Batch job involves 1. Submit the job with the HOLD..

Answer / katiyar

As you already aware and mentioned above about the batch
job,just need the steps to executes in real scenario.

I debugged a RPG program in real scenario successfully.
Please use below steps.


1 HLD JOB Q

2 SBM JOB

3 STRSRVJOB

4 STRDBG PGM

5 F12(WITHOUT BRK POINT)

6 RLSJOBQ JOBQ

7 F10

8 DSPMODSRC

9 ADD BREAK POINT

10 F12

11 F12

12 ENTER

13 ENDDBG

14 ENDSRVJOB


----------------------------------------------------------
After HLDJOBQ and SBMJOB , use command WRKJOBQ <Jobq> and
select the job and note down its job name, user and job
number, which is required at step third STRSRVJOB.
---------------------------------------------------------
Give a try and revert. Hope this will help you.
----------------------------------------------------------

Is This Answer Correct ?    6 Yes 0 No

I have learnt through Net that Debugging a Batch job involves 1. Submit the job with the HOLD..

Answer / balaji

If you try to debug a object which is present in qtemp,then you cannot even see the source for fixing break point.I have experienced the same earlier.

Is This Answer Correct ?    0 Yes 0 No

I have learnt through Net that Debugging a Batch job involves 1. Submit the job with the HOLD..

Answer / guest

First Of all Compile your source code with *source other
wise it will not show you source code after press F10 and by
command DSPMODSRC.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More RPG400 Interview Questions

1.What is referential Integrity? 2.What is Foreign Key? 3.What is Transfer Control? 4.What is Free format?

3 Answers  


How to update only a field of a PF in an RPG program. I don't want to update the record, only one field.

2 Answers  


Hi guys, anybody know How RPG/400 code can be converted to RPG IV code with a single command?

1 Answers  


can anybody help me to solve this problem. the program that i m checking display error message saying "Record format for file AJDSPFFD does not match model file and decimal error. how to solve this problem. The AJDSPFFD is snapshot the AJTLOG that is the audit trail list.

0 Answers  


can any body correct the following code? Following a procedure which returns the maximum of two numbers.Correct the following code. P GETMAX B D GETMAX PI D NUM1 35 0 D NUM2 45 0 C IF NUM1 > NUM2 C RETURN NUM1 C ELSE C RETURN NUM2 C ENDIF P GETMAX E

1 Answers  






Can anybody tell me that why we use option(*nodebugio)in H- Spec?

3 Answers  


The PGMA calls PGMB.PGMB generates a report.The report should contain the called program name(PGMA).How do i get the called program name in PGMB to print it on the spool file?(calling program name should NOT be hard coded or passed as parameter to called program?

6 Answers  


What is significance of a file designated as a Primary file in Rpg400 program....also what's use of secoundry file

1 Answers  


Why did we give STRSRVJOB while debugging batch program

3 Answers   HBL Power Systems,


what is the procedure and explain about real time scenario.

0 Answers   Adhoc Technologies, Hanuman Automation, HSBC, IBM,


1.Suppose my file has 10 fields and I want to make the 2nd field Zeros in all records. And assume I have millions of records and I dont want to read each record and update the desired field with 0. Any other way to do this in one step operation? 2. Assume my file has 100 records and I want to see only first 10 records. Is this possible through LF? 3.I have 3 jobs A B and C. I want to submit B after successful completion of A and want to submit C after successful completion of B. Without using job scheduler or job queue, how can i do that through CL program? 4.What is difference between Bind by copy and bind by reference?

4 Answers   Virtusa,


If record-format name in an externally-described file has already been defined as a file-name.how to solve this?

2 Answers   CTS,


Categories