How many types of parameters are used in JCL and what are
mandatory parameters of JOB statement.
Answer Posted / sharmila_g
All the parameters are divided into two types:-
1) positional parameters.
2) keyword parameters.
-- positional parametrs are mandatory.
-- keyword parameters are optional.
positional parameters at job level are :- accounting information, programers name.
keyword parmtrs are :- notify,class, msglvl, msgclass, typerun,prty.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
what disp parameter we mention for creation of temporary dataset so that we can use it in later steps?
What is jcl in mainframe?
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
is there any way to execute more than one proc in the same exec statement at the same time..?
How to code these statements in JCL: CLEANUP INITIAL(NO) RESTART(NO) DYNALLOC(NO) job definition..?
How jcl is used for testing batch programs?
how you will the direct the data to spool using sysout option?
What is 'mounting' of volumes ? Is there anything that a programmer can do in it ? How to find currently mounted volume ?
Explain in DD statement what is the use of DCB parameter?
Is automatic restart possible in jcl? If yes, how?
Explain about ISPF/TSO Commands
how can the same proc be re-used and called by many jobs?
what is the JCL statement consists of?
Is there any command to check wether the ps file is in sorted order?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length ----TRY