In my job I have 6 steps. Step01,02,03...step06.
after executing step02 i want to skip step03 and want to
execute step04. and once step04 is done then I want to go
back and execute step03. once step03 is completed I want
execute step05, 06 and so on... can any one tell me how do
i do that???
Answer Posted / nidhi sharma
IT CAN BE DONE BY CONDITION STATEMENT
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
how can the same proc be re-used and called by many jobs?
What is use of restart and how to use it?
Explain how can values be passed from the job stream to an executable program?
what is use of disp parameter in dd statement?
Is condition checking possible in jcl? If yes, how?
//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 do you access an uncataloged dataset in a jcl?
What is the function of the dd mgmtclas keyword in sms datasets?
What is one line to pass PARM from JCL to COBOL?
What is the use of disp parameter?
List the various advantages of using jcl language?
Does jcl support automatic restart?
how you will the direct the data to spool using sysout option?
What is the significance of addrspc parameter in the exec statement?
Is it possible to define dd statements as you want?