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?
Answers were Sorted based on User's Feedback
Answer / karthikeyan
in job card itself you can give this
restart=procname.step5
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / 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 |
What are the maximum and minimum sizes of any CONTROL AREA (VSAM datasets) ?
How to empty the records in jcl
There is one QSAM is the VB file. i want to get the first characters in this file and change those characters from'abcd' to '1234' and creat a vasm file to put '1234' in it. how to do in only JCL. if it not QSAM, it's VASM and VB. how to do it.
How much is memory space involved, when we code BLOCKSIZE,TRK & CYL ?
WHAT WILL HAPPEN TO A FILE IF DISP=(MOD,DELETE,DELETE)
Please explain with syntax and an example, the Inrec fields and Outrec build in sort.
what are the ways of passing data to a cobol program from jcl?
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
What is the meaning of keyword in JCL? What is its opposite?
Why include statement is used in a jcl?
i created one base gdg with lrecl = 100 , now i need to create versions with different lrecl =150,200 can it be possible to create like tht ?
Can we use COND=EVEN on a job card, when jobs are scheduled through scheduler?