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 |
In DCB, what is LRECL,BLKSIZE,DSORG
i have 6 steps in my jcl program after going to 5th step i want to execute 3rd step.....how can i do it....by using(RESTART) can i do it or not?
What do you do if you do not want to keep all the space allocated to a dataset?
How can I override a dsn that is contained in a proc called by another proc? I need to do the override in the calling JCL.
What is the use of symbol // in jcl?
Explain the function of dd disp parameter?
What are the jcl procedures?
what is the purpose of coding class parameter in job statement?
What is DSNDB06 ?
if you have big pgm. during compilation is abends with (soc7)how do you know which line has soc 7 error.
How to point my proc to production dataset always though i keep jcllib order=development.dataset? Is it possible?
What does the one advantange of using IEBUPDTE?????