I have a JCL which 20 steps. How do I execute 17 th step
alone (It should execute only 17ths tep.and it should not
execute 18,19,20 steps??
Answer Posted / atul
Hi,
Code as: RESTART=PROCNAME.STEP17,COND=(4095,NE)
This executes 17th step only and no other step. For
successful execotuin, you will recieve message 'STEP17
PROCNAME - ENDED BY CC 0000 - TIME=nn' in JESMSGLG in SPOOL.
| Is This Answer Correct ? | 18 Yes | 3 No |
Post New Answer View All Answers
Explain in DD statement what is the use of DCB parameter?
How to run cobol program using jcl?
When space is allocated for an output dataset, what units can be used?
What are the parameters that are used in creating a gdg?
What is the function of dd name parameter with a 2 part structure; audit.report?
What is timing concept in mainframe?
What is concatenating?
How can a fb file convert to vb file using sort program?
For what purpose steplib and joblib are used ?
What is the use of symbol // in jcl?
Explain the function of the steplib dd statement?
i want to store 20 digits . how will u do it in cobol ?
//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 /*
Explain how can the attributes of one sms dataset be copied to another dataset?
How can a jobs execution priority be modified?