How to execute only th 15th step of JCL consisting of 50 steps?
Answer Posted / paray2x
One option is to use RESTART=STEP15 and insert a null JCL
before it.
Otherwise, determine what condition code STEP15 will
return. If it will return 0, then code RESTART=STEP15 and
COND=(0,EQ) on the job card itself.
The COND will apply to all steps. Since STEP15 has no
previous step when restarting, COND will be ignored for
this step. Then, other steps will flush because of the COND
parameter.
| Is This Answer Correct ? | 12 Yes | 2 No |
Post New Answer View All Answers
how you will the direct the data to spool using sysout option?
Explain the function of job statement in jcl?
What is the maximum length of a single line of jcl?
How does jcl specify the job to the operating system?
how JCL works?
How dummy is used in jcl?
What is 'mounting' of volumes ? Is there anything that a programmer can do in it ? How to find currently mounted volume ?
What are the difference between jcl and jes?
Explain how can the submitting users racf authority be overridden in a job stream?
For what purpose steplib and joblib are used ?
what is the purpose of coding notify parameter in job statement?
How do you submit a job for execution?
List the various advantages of using jcl language?
in a jcl, a large volume dataset is loaded to a table using bmcload in step1 and an image copy of the loaded table is taken using bmccopy in step2. Step2 abends because the image copy dataset cannot hold the volume of the table. How can this be rectified?
Name the statement which can be used to send data to another mvs jes3 node?