If a job has 3 steps and step 1 and step 3 should get
executed and step 2 should not get executed irrespective of
the return code from the previous steps. How can it be done?
Answer Posted / guest
abnormal termination
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?
what is the purpose of coding notify parameter in job statement?
List the various advantages of using jcl language?
what happens in conversion stage in job processing?
How can values be passed from the job stream to an executable program?
A chkpt is the parameter coded for multi-volume qsam datasets in a dd statement. When a chkpt is coded as chkpt=eov, a checkpoint is written to the dataset specified in the sysckeov statement at the end of each volume of the input/output multi-volume dataset. State whether true or false?
what are JCLLIB and STEPLIB in JCL?
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 the function of the steplib dd statement?
How to pass the parameter in parm using linkage section ? (syntax)?
Explain the function of //jcllib statement?
Are there any set of rules for the names of the steps used in a job? What are they?
Name the parameters which can be used to limit the number of records written to a sysout dataset?
what is use of space parameter in dd statement?
What methodology can be adapted to transfer data to a program that is coded using the exec statement?