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 are steplib and joblib? What for they are used?
What do you understand by jcl?
Can we call instream to catalog and catalog to instream?
How to resolve the error "WER488A JOIN CAPACITY EXCEEDED" I am using SYNCSORT with JOINKEYS to compare 2 files. I am Getting error - > WER488A JOIN CAPACITY EXCEEDED There are 2 files to be compared with about 2 million records each. LRECL is 3665. Can somebody give a pointer as to how to resolve this problem? I am using SYNCSORT with JOINKEYS to compare 2 files. I am Getting error - > WER488A JOIN CAPACITY EXCEEDED There are 2 files to be compared with about 2 million records each. LRECL is 3665. Can somebody give a pointer as to how to resolve this problem?
is there any way to execute more than one proc in the same exec statement at the same time..?
What happens if both JOBLIB & STEPLIB is specified ?
Explain the purpose of the dd keylen parameter?
how to do automated restart when a job abends?
how can a gdg base be created in a jcl. What is the difference between empty and scratch parameter while defining/altering gdg base?
Explain the function of //cntl statement?
WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375
What is the syntax of JCL statement?
How to code these statements in JCL: CLEANUP INITIAL(NO) RESTART(NO) DYNALLOC(NO) job definition..?
What is the function of dd disp parameter?
in ways data can be passed to a COBOL program from JCL?