A PROC has five steps. Step 3 has a condition code. How can
you override/nullify this condition code?
Answer Posted / abhirup
//STEP01 EXEC PROCNAME, COND.STEPNAME = EVEN
WHERE STEPNAME IS THE PROC STEP.
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Explain the function of dd name parameter with a 2 part structure; audit.report?
What do you understand by the terms: joblib and steplib?
A dd statement consists of 4 fields. Name them?
a set statement is used to define commonly used symbolic across job steps or procedures. It initializes the previous values in the symbolic names. It has to be defined before the first use of the symbolic names in the jcl. State whether true or false?
what are JCLLIB and STEPLIB in JCL?
WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
How is the record format of an output dataset specified?
How do you overcome this limitation ?
Is it possible to code instream data in a PROC?
What is the function of job statement in jcl?
My Question is 1. How to cound no. of records in JCL. Please explain with an example. 2. How to execute only odd steps in JCL? I know EDIT TYPE = Inculde, Step Name = 1,3,5 and COND code for all even step. Anyone knows other than this.
What is the function of dd disp parameter?
what is the JCL statement consists of?
List the different components of jcl statement?
How to run cobol program using jcl?