in jcl you are having JCLLIB and STEPLIB what happens
Answer Posted / ranbeer
If you code both a JOBLIB DD and STEPLIB DD statement in
the same job, the STEPLIB DD statement overrides the JOBLIB
statement only for that step. For that step only, the
system ignores JOBLIB and first searches the private
libraries specified on the STEPLIB DD statement. If the
system does not find the program in the private libraries,
it then searches the system libraries. Then, if z/OS still
has not found the program, the system abnormally ends the
job step.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
How is a type of file defined in the jcl that executes the cobol program?
What is the function of job statement in jcl?
what is the use of JCL?
Which statement is used to identify the private libraries in job?
what is the JCL statement consists of?
Can we call instream to catalog and catalog to instream?
in ways data can be passed to a COBOL program from JCL?
define cond parameter in jcl?
What are the parameters that are used in creating a gdg?
How do you access an uncatalogued dataset in a 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
what EXEC statement is and what is the syntax of EXEC statement used in JCL?
Is it possible to left uncode disp?
How to submit jcl through a cobol program?
If a (+1) generation dataset is created in the first step of a job, how can it be referenced in later steps of the same job for input?