Answer Posted / 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 |
Post New Answer View All Answers
What do you understand by the term job time – out and how can you overcome that?
Can we use DISP=SHR in output file in JCL
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?
Name what parameter directs the output of the job log dataset?
Is automatic restart possible in jcl? If yes, how?
How is a type of file defined in the jcl that executes the cobol program?
What is the purpose of dd * statement in jcl?
Hello Guys, I have 1+ Year Experience in MAINFRAME TESTING. After 1 Week I have an Interview With a Company on Mainframe Testing. Please Could You Guys Please Suggest me What Sections Should I prepare ?? ___Tell Me the Topic Or Appropriate Site & Links. ?? ---------------Thank You
Explain how can values be passed from the job stream to an executable program?
Give the syntax of job specifying jcl statement.
what is use of space parameter in dd statement?
Explain about LMFREE�free data set from its association with data ID
Where & How Do You Code Identifier In Jcl?
Suppose I have a program in cobol name ”careerride” and want to execute the program by jcl. Specify the process?