I have 5 steps in my job. say s1, s2, s3, s4, s5
//s1 exec .............
//s2 exec ............
//s3 exec ..........
//s4 exec ........
//s5 exec ...............
my question is i want to exeute only s2 and s4 steps...
please advice me how to do this:
Answer Posted / sanvz
the best way to acheive this
restart = step2 and code in step 3 cond as 0,eq
and after step 4 add null stmt
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
in ways data can be passed to a COBOL program from JCL?
which utility is used a dummy utility?
what is the purpose of coding class parameter in job statement?
What is the purpose of dd dummy 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
What is jcl in mainframe, and how many types of jcl statements are there for a job?
how JCL works?
Differentiate between the joblib and the steplib statements?
What do you understand by the terms: joblib and steplib?
What are the rules employed while naming the steps in a job?
What is jcl in mainframe?
in a jcl, a large volume dataset is loaded to a table using bmcload in step1 and an image copy of the loaded table is taken using bmccopy in step2. Step2 abends because the image copy dataset cannot hold the volume of the table. How can this be rectified?
I want to join to input files and write the matching fields on to an output file but i dont want the output file a sorted one
Give the syntax of job specifying jcl statement.
What is the use of disp parameter?