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 and what is the maximum limit of versions that can be created?
What are the parameters that are used in creating a gdg?
how can we pass parameters from JCL to cobol subprogram...my requirement is i should not get data from mainprogram but i need it from JCL directly
What does a disposition of (MOD,DELETE,DELETE) mean ?
There is one QSAM is the VB file. i want to get the first characters in this file and change those characters from'abcd' to '1234' and creat a vasm file to put '1234' in it. how to do in only JCL. if it not QSAM, it's VASM and VB. how to do it.
A file has dta in S9(09) COMP format. How do I move the data into a character field X(10)?
A dd statement consists of 4 fields. Name them?
how to create a member or sequential dataset through tso command??
How do you submit a job for execution?
MOD, DELETE; What does a disposition of (,DELETE) mean ?
in a series of 10 steps, i need to run only 1,3,5,7 & 9th steps only. how do u code?
What is a PROC? What is the difference between an instream and a catalogued PROC?