Suppose I have Five Steps in PROC In this Case I want to
Execute third Step in PROC using Main JCL don't use any COND
Explain with Coding Thanks & Regards
SHREE
Answer Posted / sravanthi
Yeah, We can give RESTART=PROCNAME.STEPNAME the job card of
the main jcl. And inorder that no other steps run after the
3rd step, specify //(null statement) in the JCL to stop the
execution of other steps in the PROC
| Is This Answer Correct ? | 7 Yes | 5 No |
Post New Answer View All Answers
what is SOC4 error?
what is the use of IEBGENER utility?
how can the same proc be re-used and called by many jobs?
What is the difference between the positional and keyword parameters? Give examples.
What does a disposition of (MOD,DELETE,DELETE) mean ?
What is notcat 2 - gs?
//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 /*
how can a gdg base be created in a jcl. What is the difference between empty and scratch parameter while defining/altering gdg base?
How dummy is used in jcl?
Does jcl support automatic restart?
How is a type of file defined in the jcl that executes the cobol program?
Brief description of inline procedure of jcl.
In job processing, what happens in execution stage?
For what purpose steplib and joblib are used ?
Is it possible to define dd statements as you want?