what is batch debug in as400?
Answers were Sorted based on User's Feedback
Answer / naresh
Batch debug means debugging the program by putting job in
service by using STRSRVJOB command after that we debug the
program as usual.Once debug is done we need to end the
service job using ENDSRVJOB command.
please correct me if i made any wrong statement.
| Is This Answer Correct ? | 10 Yes | 1 No |
batch job means running job in background to save the time.so user are not able to make the interaction with batch job.suppose there in and issue occured or error occured in job of batch .now you have to find the error but how as that job is running in batch and we are not able to make intercation with that job in batch so what we do . we remotly access that batch job through strsrvjob command .when we remotly access that job than it will convert into interactive job .after making it interactive job we can debug that job and find the error.
i short we have to make batch job to interactive job for solving the error or to debug the program.
please correct me if i m wrong .
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / sandy
Using your interactive screen to debug a batch job submitted to the job queue allows you to put the batch job into debug mode and to set breakpoints without having to change the program to run interactively.
| Is This Answer Correct ? | 0 Yes | 0 No |
i have 6 char field in program, but this field is using in all files i want to chage field size as 10 char , how can i do this except using *like defn...?
1.I have a Physical file with 100 records, No duplicates exists, all are Unique,But while i am running Runqry utility i am getting only 80 records..What could be the reason?
I have file with data as follows data 1 2 3 4 5 I need to read 1 and 5 ,then 2 and 4 then like.. upto end of file, can any one help on this
Anyone help me for the below question:- If problem/error occur in *PSSR subroutine,how should I handel it in RPG program.
What is ment by record level identifier?
can I touch the array during treatments?
Can more than one subfile record be displayed on one line?
What are the commands that can be executed in CLP but not in RPG? Why?
what is the use of sflnxtchg?
As Packed veriable store 2 digits in 1 byte and ZONE variable store 1 digit in 1 byte... Please tell me when we have to use Packed and Zone variable...?
Can we create 300 logical files based on a single physical file using the CRTLF command only once?.
How to call one program from another program in RPG? please help me with the code