How to use COND Parameter in jcl
Answers were Sorted based on User's Feedback
Answer / krishna
cond statement is used for conditional execution of a
perticular step.
cond=(return code, relational operator)
it can be coded with job statement or with exec statement.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / challa srinivas
cond statement is used for conditional execution of a
perticular step.
cond=(return code, relational operator)
it can be coded with job statement or with step statement.
If COND parameter is coded both in job and step, then COND parameter of step will override JOB.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / p.ramesh
The condition statement used in job statement and also used in exec statement.
syntex
COND(Positional parameter,Conditional parameter)
EX:
COND(0,LF)
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / venkat ramana
Condition is a key word parameter. '=' is mandatory.
COND = (0, LE)
| Is This Answer Correct ? | 1 Yes | 2 No |
How to get cursor position from system in CICS environment ?
if the submitter of a job wants to inform another user about the job completion, how can it be done?
What does SYSIN * indicate?
How to find out the number of records in a file using JCL
how you can access an uncataloged dataset in a JCL?
Please explain with syntax and an example, the Inrec fields and Outrec build in sort.
what is JCLLIB and PROCLIB in jcl and their syntax
how to identify a vasam dataset by seeing in 3.4(browse)
I have two files each contains 10 records. I would like to copy both files into one output file but in alternate sequence. for e.g. first record from file1 then record 2 from file2.....
i want to restart frm step 2, previously i coded cond parameter on step2 wht happens at tht time ?
Which is the most widely used batch performance monitor for DB2?
How do you skip a particular step in a proc/JOB?