A PROC has five steps. Step 3 has a condition code. How can
you override/nullify this condition code?
Answers were Sorted based on User's Feedback
Answer / charu
The condition code can be nullified by using the following
command.
//STEP001 EXEC procname, COND.stepname=(0,LE)
| Is This Answer Correct ? | 40 Yes | 9 No |
Answer / guest
Provide the override on the EXEC stmt in the JCL as follows:
//STEP001 EXEC procname, COND.stepname=value
All parameters on an EXEC stmt in the proc such as COND,
PARM have to be overridden like this.
| Is This Answer Correct ? | 21 Yes | 12 No |
Answer / sanjayreddyguna
//step1 exec proc=procname,cond.step3=(0,le)
then proc in that step3 cond parameter will overide
| Is This Answer Correct ? | 8 Yes | 3 No |
Answer / abhirup
//STEP01 EXEC PROCNAME, COND.STEPNAME = EVEN
WHERE STEPNAME IS THE PROC STEP.
| Is This Answer Correct ? | 3 Yes | 2 No |
What is GDG?
which utility is used a dummy utility?
hi friends........if u know syntax of IEBEDIT IN JCL
i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i code RESTART and COND parameter?
Is there a limit of 3273 DD statements for a JCL or for every EXEC step in a JCL?
File1 has 100 records and file2 has 200 records i want to copy 50 records which r in both file into file3
How to submit jcl through a cobol program?
in step1 of a jcl,disp=(mod,delete,delete) step02 exec pgm=ccc,cond=(0,le) will step02 be executed? i)never ii)always iii) iv)... i dont remember options
what is use of disp parameter in dd statement?
What are the valid DSORG values ?
i have a file which contains duplicates ? my requirement is to eliminate duplicates and these elminated duplicates should be moved to another file can any code this using sort ?
How to check empty file in jcl?