Answer Posted / shakila vinayagam
JCLLIB is a JCL stmt that allows the user to specify
his/her own proclibs and/or specify the order in which
they're searched to find the PROC(s) or INCLUDE libraries
invoked in the JCL. You can use the ORDER clause to do
this. You can specify private (user) or system libraries.
| Is This Answer Correct ? | 22 Yes | 1 No |
Post New Answer View All Answers
Explain in DD statement what is the use of DCB parameter?
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
Explain dd statement in jcl?
what is JCL?
What is the use of symbol // in jcl?
How to alter the parameters for the existing gdg?
What is the purpose of dd dummy statement?
Explain the function of //jcllib statement?
what is “Cond= even” and “Cond=only”?
what happens in execution stage in job processing?
which parameter is use to declare the name of dataset in dd statement?
what is the purpose of coding class parameter in job statement?
how can a gdg base be created in a jcl. What is the difference between empty and scratch parameter while defining/altering gdg base?
how do you access an uncataloged dataset in a jcl?
Give the syntax of job specifying jcl statement.