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
How do you create a temporary dataset?
Name what parameter directs the output of the job log dataset?
What is the motivation behind coding class parameter in job statement?
In sms datasets, what is the function of the dd avgrec keyword?
What does a disposition of (new,catlg,keep) for a dsn mean?
Where can program checkpoints be stored for use in a restart?
How can the submitting users racf authority be overridden in a job stream?
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
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
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
Describe the various parameters utilized in the creation of a gdg?
What are the rules employed while naming the steps in a job?
what are JCLLIB and STEPLIB in JCL?
What is the use of disp parameter?
why should SYSIN DD * statement should not be included inside a PROCedure snippet??? please answer this.. i need to know.