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 |
What is the significance of UDATE?
In single page subfile,if I select the mutiple options in 1 page and without pressing enter,I press rollup key (pagedown).In such case how I can handle it in rpg becasue in single page we have to handle it in pgm. It would be helpful if any one answer with coding
4 Answers Infinite Computer Solutions,
Hi, Can any body tell me ur experience on this questions? Questions: 1.what is the use of SFLRCDNBR other than subfile page display? 2.Which of the following operation cannot be used in conjuction with a file coded as device type disk?
how do I do concatenation in rpg iv, like I do in cl?
I have one cl program which calls two rpg programs named a & b. I am loading a run time array in Pgm A and the control comes back to cl pgm. i call pgmb and I want to read the runtime array in pgmb which was loaded in pgma. How it can be acheived. I should not use any intermediate file or dataarea to store the loaded values.
what is the procedure and explain about real time scenario.
0 Answers Adhoc Technologies, Hanuman Automation, HSBC, IBM,
use of PUTOVR,OVRDTA,KEEP keywords?
Suppose you have 3 members in a database file. How to read records from all the members without using CL (OVRDBF) i.e. Entire process should be handled exclusively in a RPG program?
How to handle duplicate error handling in RPG?
I know chain keyword retreive records randomly but how chain keyword exactly works internally????
How to create a login screen using a command instead of display file.... intention is to get a password field on a command..... how do you achieve this...
Hi friends, Can you give the solution for the below mention simple code.and explain.what is output D CHR1 S 4A INZ('PEN') D CHR2 S 10A INZ('MYGET') D CHR3 S 8A INZ('GOOD') D CHR4 S 22A INZ C MOVEL CHR1 CHR4 C MOVE CHR2 CHR4 C EVAL CHR4=CHR3 C MOVE CHR1 CHR4