When we use conditional statement in JCL using
if-then-else-endif, IF statement is true, the step is
bypassed or executed?
Answer Posted / praveen bejjanki
JCL has 2 statement which can check for the Return code of
the previous step.
1. Cond stmt: step will be executed when the condition is
falst
2. If stmt: step will be executed when the given condition
is true.
@All: Correct me if i'm wrong
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is the motivation behind coding class parameter in job statement?
What is timing concept in mainframe?
What is the purpose of dd * statement 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
Define concatenating?
Name a few IBM utility programs, and explain its function.
define cond parameter in jcl?
which parameter is use to declare the name of dataset in dd statement?
Differentiate between the joblib and the steplib statements?
What is condition checking in jcl? Is this possible?
Are there any set of rules for the names of the steps used in a job?
How would you understand error(execution phase)?
Brief description of inline procedure of jcl.
Is automatic restart possible in jcl? If yes, how?
Explain in DD statement what is the use of DCB parameter?