in jcl you are having JCLLIB and STEPLIB what happens
Answer Posted / captain evidence
JOB uses JCLLIB to find user's procedures and STEPLIB to
find user's programs
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
what are the various stages of job processing?
How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?
what is DSN in JCL and what are the parameters to declare the DSN?
If a (+1) generation dataset is created in the first step of a job, how can it be referenced in later steps of the same job for input?
in a jcl, a large volume dataset is loaded to a table using bmcload in step1 and an image copy of the loaded table is taken using bmccopy in step2. Step2 abends because the image copy dataset cannot hold the volume of the table. How can this be rectified?
For what purpose steplib and joblib are used ?
i want to store 20 digits . how will u do it in cobol ?
Differentiate between the joblib and the steplib statements?
whats the diff bw the evaluate also and and?
My Question is 1. How to cound no. of records in JCL. Please explain with an example. 2. How to execute only odd steps in JCL? I know EDIT TYPE = Inculde, Step Name = 1,3,5 and COND code for all even step. Anyone knows other than this.
How do you create a temporary 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 is job control language?
Explain how can the disposition of sysout datasets be set for an entire jobstream?
How to pass data to a program that is coded in an exec statement?