What is the purpose of include statement in a JCL?
Answer Posted / guest
It is used as an alternative for STEPLIB. When we specify
the dataset name in include ,it will search in all the
datasets specified in the include dataset.
| Is This Answer Correct ? | 5 Yes | 6 No |
Post New Answer View All Answers
What do you understand by jcl?
what is use of disp parameter in dd statement?
What statement marks the beginning of an in-stream or cataloged procedure in jcl and assigns default values to parameters defined in the procedure?
which parameter is used to check the syntax of a jcl without executing it?
Can we call instream to catalog and catalog to instream?
What is Cataloged Procedures?
Explain about ISPF/TSO Commands
Name the parameters which can be used to limit the number of records written to a sysout dataset?
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 sort card you will use to copy the data from one dataset to another dataset?
How do you access an uncatalogued dataset in a jcl?
I have mainpgm(abc) this is the only cobol pgm(non-db2).And this pgm calling subpgm name "acd" this also only cobol(non- Db)and this pgm calling some other subpgm this pgm has cobol-db2 pgm. 1) IF you calling static mode how to run and how to compile? 2) IF you calling dynamic mode how to run and how to compile? plz suggestion me.
in ways data can be passed to a COBOL program from JCL?
which parameter is use to declare the name of dataset in dd statement?
what is DSN parameter and DISP parameter is used for?