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



A PROC has five steps. Step 3 has a condition code. How can you override/nullify this condition cod..

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

A PROC has five steps. Step 3 has a condition code. How can you override/nullify this condition cod..

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

A PROC has five steps. Step 3 has a condition code. How can you override/nullify this condition cod..

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

A PROC has five steps. Step 3 has a condition code. How can you override/nullify this condition cod..

Answer / abhirup

//STEP01 EXEC PROCNAME, COND.STEPNAME = EVEN

WHERE STEPNAME IS THE PROC STEP.

Is This Answer Correct ?    3 Yes 2 No

A PROC has five steps. Step 3 has a condition code. How can you override/nullify this condition cod..

Answer / guest

//STEP003 EXEC procname

Is This Answer Correct ?    3 Yes 3 No

Post New Answer

More JCL Interview Questions

What is GDG and what is the maximum limit of versions that can be created?

9 Answers   Convergys,


What are the parameters that are used in creating a gdg?

0 Answers  


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

5 Answers   IBM, TCS,


What does a disposition of (MOD,DELETE,DELETE) mean ?

0 Answers  


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.

1 Answers   IBM,


A file has dta in S9(09) COMP format. How do I move the data into a character field X(10)?

2 Answers  


A dd statement consists of 4 fields. Name them?

0 Answers  


how to create a member or sequential dataset through tso command??

4 Answers  


How do you submit a job for execution?

0 Answers  


MOD, DELETE; What does a disposition of (,DELETE) mean ?

3 Answers  


in a series of 10 steps, i need to run only 1,3,5,7 & 9th steps only. how do u code?

5 Answers   ADP,


What is a PROC? What is the difference between an instream and a catalogued PROC?

2 Answers  


Categories