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 the difference between catalogue procedure and In-Stream procedure?

2 Answers  


Describe the EXEC statement, its meaning, syntax and keywords?

2 Answers  


How to find in aparticular step how many versions a paricular gdg base have?

4 Answers   TCS,


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

4 Answers  


A statement about PROCs is " In PROCs, Symbolic Parameters can be assigned on PROC and EXEC", BUT On which EXEC, (i) On the JCL's EXEC which is calling to PROC1. (Inside JCL, EXEC PROC1) (ii) or On the PROC's EXEC where it calls the PGM1. (Inside PROC, EXEC PGM=PGM1)

1 Answers   IBM,






I have a input file. Data like: ABCDEFGH.... i want out put file like AB BC CD DE....How can do this??

7 Answers   UST,


Hi, My dataset have multiple records, say 100. I want to start copy records only after a record contain a specific value that may be in a specific position. Secondly I want to stop copying rest records if certain record contains a specific value. Can it be done using SORT/ICETOOL utilities?

5 Answers   Patni,


Explain the function of //jcllib statement?

0 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,


how can you check if a file is empty using jcl?

0 Answers   IBM,


how many max steps can we use in a job? pls answer to my question

3 Answers   TCS,


what EXEC statement is and what is the syntax of EXEC statement used in JCL?

0 Answers  


Categories