What is order of searching of the libraries in a JCL?
Answers were Sorted based on User's Feedback
Answer / guest
First any private libraries as specified in the STEPLIB or
JOBLIB, then the system libraries such as SYS1.LINKLIB. The
system libraries are specified in the link list.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / sukhwinder
First Steplib, if not then Joblib, if not then system lib.
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / vigneshraj
jpa (job pack area )
tasklib
job/steplib
lpa(link pack area)
linklistxx or procxx
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sunitha
Suppose if we specify multiple datasets in the joblib and
steplib statements then the dataset with largest block size
will be the first one to be searched in order.
| Is This Answer Correct ? | 0 Yes | 4 No |
How do you skip a particular step in a proc/JOB?
1.How to check for the errors using TYPRUN=SCAN?What will be the output if we give TYPRUN=SCAN?
How to alter the parameters for the existing gdg?
consider the following progrm statements MOVE 0 TO SW.NO.OF.REC PERFORM PRI-OUT UNTIL SW=1 DISPALY NO.OF.REC STOP RUN PRE-OUT READ IN-FILE AT END MOVE 1 TO SW WRITE OUO-REC FROM IN-REC ADD 1 TO NO.OF REC if the IN-FILE contains 1000 records what value will be displayed after the PERFORM is over? assume that N0.OF.REC has PIC 9(4) a.1000 b.1001 c.1 d.none of the above
FOR a GDG, the book by 'SABA ZAMEER' says 'We can NOT ALTER the LIMIT parameter after it is defined'. (p-211). But many persons have written that it can be changed, which one is true ?
How is a type of file defined in the jcl that executes the cobol program?
What is a MODEL Paramater in GDG ?
I have DATE filed like DD-MM-YYYY, So I want output should be MM/DD/YYYY using JCL? Can anybody post the answer for above requirement?
4 Answers BirlaSoft, FIS, Wipro,
If I update one or more members in a pds in the step 1, how can I reach these new contents to be used in the step 2 of the same job? To start a new job via intrdr is not satisfactory, because I must solve this problem in one job.
what are the types of abends that occur on job failure? And explain the possible causes of these
What is a JCL Command statement ?
How can you execute a COBOL program via SYSIN in JCL?