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 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Differentiate between addressing mode and run mode.

622


what is DSN in JCL and what are the parameters to declare the DSN?

733


What are the parameters that are used in creating a gdg?

750


how do you access an uncataloged dataset in a jcl?

877


What is the function of the steplib dd statement?

752






What is the function of a dd statement?

717


Explain the function of the dd dcb keyword?

719


when can a job time-out occur? How to overcome that?

763


How would you understand error(execution phase)?

643


Explain how can the attributes of one sms dataset be copied to another dataset?

715


How to find the UNIT and VOLUME of a (a) KEPT (b) UNCATALOGED and (c) CATALOGED dataset - using (i) JCL and using (ii) ISPF ?

2180


I have a job called careerride and some steps in it as step1,step2. But I want to execute step2 before step1 ? How do I do that?

845


Explain how can return codes be tested before execution of a job step?

841


What is jcl in mainframe, and how many types of jcl statements are there for a job?

641


//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 /*

927