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

Mainframes gets a text file that contains the name of the file. Now using JCL i want to locate that file name in the mainframe system and perform further processing. Please tell how to proceed

0 Answers  


i have step1,step2,step3 from where can i start coding cond parameter ?

2 Answers   Verizon,


What are hierarchy levels in jcl?

0 Answers  


Is condition checking possible in jcl? If yes, how?

0 Answers  


IF we are calling a PROC from Jcl...This Proc have 3 steps in it and we want to execute only the second step using the JCL, How to do it?? Please give the answer ASAP:)

8 Answers  






Explain about Cobol Subroutines

1 Answers  


consider the following progrm statements MOVE 0 TO SW.NO.OF.REC PERFORM PRI-OUT UNTIL SW=1 DISPALY NO.OF.REC STOP RUN PRE-OUT READ IN-FILE AT END MOVE 1 TO SW WRITE OUO-REC FROM IN-REC ADD 1 TO NO.OF REC if the IN-FILE contains 1000 records what value will be displayed after the PERFORM is over? assume that N0.OF.REC has PIC 9(4) a.1000 b.1001 c.1 d.none of the above

1 Answers  


What do you understand by jcl?

0 Answers  


What do you feel makes a good program?

1 Answers  


I need to compare two VSAm files. In input VSAM file some fields are updating and the updated feilds are coming into the output file. now i need to compare these two files with respect to a perticular field. Please suggest a suitable JCL code me.

2 Answers   Cognizant, Wipro,


What is the syntax of JCL statement?

0 Answers  


How to Enter The Spool Area In Real Time?

7 Answers   IBM,


Categories