How many types of parameters are used in JCL and what are
mandatory parameters of JOB statement.
Answer Posted / shankar
Two types of parameter used in JOB statement Positional
parameter and Keyword parameter.
In general ,the keyword parameters are mandatory one..
eg... in job card class name,msg level are mandatory...
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
Explain the purpose of dd dummy statement?
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
How jcl is used for testing batch programs?
Suppose I have a program in cobol name ”careerride” and want to execute the program by jcl. Specify the process?
What is the purpose of the dd keylen parameter?
how do you access an uncataloged dataset in a jcl?
What are the difference between jcl and jes?
What is the motivation behind coding class parameter in job statement?
Is it possible to define dd statements as you want?
What is jcl in mainframe?
Differentiate between the joblib and the steplib statements?
How does jcl act on a cobol code?
Is acct parameter mandatory?
What is the function of the steplib dd statement?
How to pass the parameter in parm using linkage section ? (syntax)?