I have a JCL with 10 steps, want to execute first 5 steps
only, what are ways of doing it?is it possible to control
through JOB card?
Answer Posted / shivakrishna
we can bypass by giving cond parameters in step from 6 if
we know the cond codes from previous steps.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Explain how can the disposition of sysout datasets be set for an entire jobstream?
For what purpose steplib and joblib are used ?
When space is allocated for an output dataset, what units can be used?
What is the difference between the positional and keyword parameters? Give examples.
What is the use of symbol // in jcl?
how to compare two datasets without using superce because output is limited to 133 bytes
What methodology can be adapted to transfer data to a program that is coded using the exec statement?
In job processing, what happens in conversion stage?
What are the 4 fields in dd statement?
what is the purpose of coding notify parameter in job statement?
What is the format of comment statement?
how to do automated restart when a job abends?
What statement marks the beginning of a job step; assigns a name to the step; identifies the program or catalogued or in-stream procedure to be executed in the step?
//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*
what is JCL?