i have a jcl calling proc which has 10 steps, i want to
execute from step5 to step10, where can i code RESTART and
COND parameter?
Answer Posted / rajkanya
The RESTART parameter can be coded at JOB CARD level as:
RESTART=PROCNAME.STEPNAME ( in this case STEP5 )
and the COND parameter can be coded at both JOB and STEP
level. At STEP5, as:
//STEP5 EXEC PGM=.....,COND=EVEN
COND=ONLY it allows step execution if any prior step is
ABENDED
COND=EVEN it allows step execution even if the prior step
is ABENDED
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How would you understand error(execution phase)?
Is automatic restart possible in jcl?
Explain about LMQUERY�give a dialog information about a data set
Is their any set of rules for dd? Explain.
What are the parameters that are used in creating a gdg?
Is it possible to left uncode disp? If yes, how?
I have a cobol db2 program(PGM A) where other program (PGM B) will call this program and passes some 50 fields data to PGM A. PGM A has some layout in which it receives the data from PGM B. And this layout has been copied in the linkage section pf PGM A. After getting the data, PGM A writes the data in a flat file in the same layout which it receives from PGM B. PGM B is a simple COBOL pgm. Please provide a JCL to run these programs.
Explain the purpose of dd dummy statement?
Explain the function of a dd statement?
Is it possible to code instream data in a PROC?
when can a job time-out occur? How to overcome that?
what is the JCL statement consists of?
If a (+1) generation dataset is created in the first step of a job, how can it be referenced in later steps of the same job for input?
What do you understand by the terms: joblib and steplib?
Explain how can the disposition of sysout datasets be set for an entire jobstream?