A. Job Abended in STEP03. Now run job again to execute
STEP03, STEP04 (STEP01,STEP02 should not execute again)
Answer Posted / guest
by using restart parameter you can do this.
//jobcard, restart=(step3)
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What statement marks the beginning of a job step; assigns a name to the step; identifies the program or catalogued or in-stream procedure to be executed in the step?
what EXEC statement is and what is the syntax of EXEC statement used in JCL?
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
what JCL Procedures?
what are JCLLIB and STEPLIB in JCL?
Is condition checking possible in jcl?
Which statement is used to identify the private libraries in job?
List the different jcl statements that are not permitted in the procedures?
what are the statements that are not valid to be included in an include 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
Explain how can the submitting users racf authority be overridden in a job stream?
How is a type of file defined in the jcl that executes the cobol program?
What does it mean by Restart and Checkpoint in JCL ? How are checkpoints being taken and what is their usage ? How to use Checkpoint macro on a JOBSTEP ?
Explain the function of job statement in jcl?
what disp parameter we mention for creation of temporary dataset so that we can use it in later steps?