How to restart a job from the step of a cataloged procedure?

Showing Answers 1 - 15 of 15 Answers

Smitha

  • Nov 20th, 2006
 

By typing RESTART=<step number in the Jobcard at the beginning of the JCL.

For instance, if the step you need to restart from is called STEP002,you would type RESTART=STEP002

  Was this answer useful?  Yes

Pradeepan Rajendran

  • Nov 22nd, 2006
 

Just give

Restart =JOBSTEPNAME.PROCSTEPNAME in the Job card

  Was this answer useful?  Yes

Kumar

  • Dec 15th, 2006
 

If you want to restart a step in cataloged proc. We have to give  

Restart =PROCSTEPNAME.JOBSTEPNAME in the Job card.

  Was this answer useful?  Yes

gopu

  • Jan 4th, 2007
 

For Eg :-

A job is having 5 steps //------ job card--------

                                   //step1

                                  //step2

                                 //step3

                                 //step4

                                //step5        exec    proc= step1

                                                                        step2(abended)

sol:- RESTART=PROCSTEP.JOBSTEPNAME

  Was this answer useful?  Yes

haiardhan

  • Sep 30th, 2008
 

In environment division
1) input - output section.
2) configuration section.

In data division
1) File section.
2) working-storage section.
3) linkage section.
4) report section.
5) screen section.
6) local-storage section.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions