i have 10 steps in my jcl.
-->if i want to execute my program from 5th step what i
have to do? don't give //* in ur previous steps
--> if i want to execute my program from 1to 5 steps only
what i have to do?

Answer Posted / ch.mahendra babu

by using restart parameter like
restart=step5

so execution process will be starts from 5th step.

Is This Answer Correct ?    19 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do you create a temporary dataset?

915


Name what parameter directs the output of the job log dataset?

828


What is the motivation behind coding class parameter in job statement?

930


In sms datasets, what is the function of the dd avgrec keyword?

884


What does a disposition of (new,catlg,keep) for a dsn mean?

872


Where can program checkpoints be stored for use in a restart?

1181


How can the submitting users racf authority be overridden in a job stream?

1026


what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?

1048


WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375

1288


How to read and write a single record into a file. I would like to use it to enter a single 8-character piece of information and use it to put it into a variable for processing in JCL. Thank you

840


Describe the various parameters utilized in the creation of a gdg?

922


What are the rules employed while naming the steps in a job?

946


what are JCLLIB and STEPLIB in JCL?

919


What is the use of disp parameter?

885


why should SYSIN DD * statement should not be included inside a PROCedure snippet??? please answer this.. i need to know.

2236