what is JCLLIB and PROCLIB in jcl and their syntax
Answer Posted / ashok kumar
jcllib is used to identify procedure,include private liveries
syn:
//jclnam jcllib order=(lib1,lib2)
proclib is having achval proc private liberes
// procname proc
// steps.....
//.....
| Is This Answer Correct ? | 3 Yes | 5 No |
Post New Answer View All Answers
In job processing, what happens in execution stage?
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
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?
How would you understand error(execution phase)?
How do you submit a job for execution?
Describe the various parameters utilized in the creation of a gdg?
write a jcl to execute a job by 7:00 am on jan 20,1986?
how to compare two datasets without using superce because output is limited to 133 bytes
Can we call instream to catalog and catalog to instream?
How can the disposition of sysout datasets be set for an entire jobstream?
Is their any limit for data sets?
What are the difference between jcl and jes?
What statement can be used to send data to another mvs jes3 node?
Explain how can values be passed from the job stream to an executable program?
How to read and write a single record into a file. I would like to use it to enter a single 8-character piece of information and use it to put it into a variable for processing in JCL. Thank you