40 pts.
 Batch job and interactive jobs in RPG/400
In RPG, when do we need to do batch job debugging and when do we need to do interactive debugging? Can someone help me please? I'm a newbie.

Software/Hardware used:
RPG/400
ASKED: April 2, 2011  12:43 PM
UPDATED: April 4, 2011  1:06 PM

Answer Wiki:
An interactive job should require interact with a User. Such as have thme enter data to update a file, or enter parameters for a job that is to be submitted to run in batch.
Last Wiki Answer Submitted:  April 2, 2011  9:36 pm  by  CharlieBrowne   32,915 pts.
All Answer Wiki Contributors:  CharlieBrowne   32,915 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

You use batch debugging when the program to be debugged will run in batch. You use interactive debugging when the program to be debugged will run interactively.

A program might need to be debugged in batch because it interacts with a server program. The interface between the server and the program might be specified incorrectly, and a debug session is the only way to learn what the problem is.

Or a program might run correctly when called interactively but fail when called in a batch job. Debugging can show where assumptions need to be adjusted for the batch environment.

Tom

 108,300 pts.