How do you restart a PROC from a particular step?
Answers were Sorted based on User's Feedback
Answer / guest
In job card, specify RESTART=PROCSTEP.STEPNAME where
PROCSTEP = name of the JCL step that invoked the PROC and
STEPNAME = name of the PROC step where you want execution to
start
| Is This Answer Correct ? | 44 Yes | 8 No |
Answer / vivek kumar
In job card, specify RESTART=PROCSTEP.STEPNAME where
PROCSTEP = name of the JCL step that invoked the PROC and
STEPNAME = name of the PROC step where you want execution to
start.
Eg. suppose a catalog proc having 5 steps.
//myproc proc
//step1 exec pgm=...
//step2 .......
//step3 .......
//step4 .......
//step5 .......
suppose i have restrat this proc from step3
so in the job statment i have mentioned
//NMNP2VT JOB ,'PM111-010',MSGCLASS=S,CLASS=Q,
RESTART = PRC010.STEP3
//JOBLIB DD DSN=......
//PRC010 EXEC PROC = myproc
//....
//......
| Is This Answer Correct ? | 22 Yes | 4 No |
How do you submit a JCL under CICS environment ?
How to execute only th 15th step of JCL consisting of 50 steps?
What is the difference between specifying DISP=OLD and DISP=SHR for a dataset?
what is use of dcb parameter in dd statement?
Please explain with syntax and an example, the Inrec fields and Outrec build in sort.
1) max no of steps with jcl job can execute 2) how many extentions r possible in sequencial files with job 3) what is set parameter will do 4)how to get syntax errors without sub 5) what is differ between error and abend 6) hw mvs knows who submitted the job and whoom it has to forward 7) what are the positinal parameters of data descripter
What methodology can be adapted to transfer data to a program that is coded using the exec statement?
What is COND=ONLY ?
what is the JCL statement consists of?
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??
9 Answers IBM, Infosys, TCS, Xansa, Xchanging,
how to run batch program without jcl?
restart logic ?