How do you restart a PROC from a particular step?

Answers were Sorted based on User's Feedback



How do you restart a PROC from a particular step?..

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

How do you restart a PROC from a particular step?..

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 restart a PROC from a particular step?..

Answer / satish.m.s

Restart=Proc step.step name

Is This Answer Correct ?    16 Yes 3 No

How do you restart a PROC from a particular step?..

Answer / senthil

YA WE CAN RESTART IT

Is This Answer Correct ?    5 Yes 2 No

How do you restart a PROC from a particular step?..

Answer / arjun

There is a procedure in ca7.

Where u can restart the job from ca11. there u need to
specify the step name and submit the job.

Is This Answer Correct ?    3 Yes 10 No

Post New Answer

More JCL Interview Questions

In DCB, what is LRECL,BLKSIZE,DSORG

1 Answers   TCS,


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?

2 Answers   Wipro,


What do you do if you do not want to keep all the space allocated to a dataset?

2 Answers  


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.

3 Answers  


What is the use of symbol // in jcl?

0 Answers  


Explain the function of dd disp parameter?

0 Answers  


What are the jcl procedures?

0 Answers  


what is the purpose of coding class parameter in job statement?

0 Answers   IBM,


What is DSNDB06 ?

1 Answers  


if you have big pgm. during compilation is abends with (soc7)how do you know which line has soc 7 error.

4 Answers   IBM,


How to point my proc to production dataset always though i keep jcllib order=development.dataset? Is it possible?

3 Answers  


What does the one advantange of using IEBUPDTE?????

2 Answers  


Categories