Answer Posted / vish
To be more specific, COND parameter is used to determine
whether to execute a particular steps or steps based on the
return from a previous step (s). e.g. you may want to send
an email notification to someone ONLY if a particular Job
step abends or return a return code greater than acceptable
norm. In such situation the EMAIL STEP (ideally should be
the next step of the step whose notification is needed if
abend occurs) can be coded with COND=ONLY. Similarly
COND=EVEN will execute a step EVEN if the previous step
abended. We can specify two parameters for COND in oder for
the Job to decide whether to execute the step or not. e.g.
COND=(0,LE) - This will execute the step only if the return
code of the previous step is Zero.
| Is This Answer Correct ? | 10 Yes | 9 No |
Post New Answer View All Answers
what is SOC4 error?
how to do automated restart when a job abends?
What is the syntax of JCL statement?
what is use of dcb parameter in dd statement?
Which dd parameters are required?
What do you understand by the terms: joblib and steplib?
What happens if both JOBLIB & STEPLIB is specified ?
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
State the uses of syspring, sysin, sort fields, sum fields and dummy.
How is a type of file defined in the jcl that executes the cobol program?
What is the purpose of dd * statement in jcl?
Describe the various parameters utilized in the creation of a gdg?
Name what parameter directs the output of the job log dataset?
Explain the function of the dd dcb keyword?
How gdg are concatenated?