in jcl you are having JCLLIB and STEPLIB what happens
Answers were Sorted based on User's Feedback
Answer / sj@iy
JCLLIB - Gives the library for cataloged procedures
STEPLIB - Coded in the individual steps. It gives the
library where the program specified in the EXEC statement
for that particular step should be searched for.
JOBLIB - Coded after the JOB statement. It specifies the
library where all programs specified in the EXEC statements
of the entire JCL should be searched for.
Having both JOBLIB and STEPLIB, the STEPLIB will override
JOBLIB for that particular step where STEPLIB is given.
Having both JCLLIB and STEPLIB shouldnt have any co-
relation as one is concerned with cataloged procedures and
the other with the programs.
Please verify answer
| Is This Answer Correct ? | 27 Yes | 1 No |
Answer / divyanshu kumar
steplib will override jcllib for that step. whereas if no
steplib is given for a certain step in that jcl .Then
joblib will come into play.
| Is This Answer Correct ? | 31 Yes | 8 No |
Answer / kishore
STEPLIB will override for that step only not for entire job
| Is This Answer Correct ? | 14 Yes | 0 No |
Answer / rks
if you mentioned jcllib in jcl that u r using cataloged
procs.
thats it nothing happen to steplib .
steplib will override joblib but not jcllib.
| Is This Answer Correct ? | 14 Yes | 0 No |
JOB uses JCLLIB to find user's procedures and STEPLIB to
find user's programs
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / ranbeer
If you code both a JOBLIB DD and STEPLIB DD statement in
the same job, the STEPLIB DD statement overrides the JOBLIB
statement only for that step. For that step only, the
system ignores JOBLIB and first searches the private
libraries specified on the STEPLIB DD statement. If the
system does not find the program in the private libraries,
it then searches the system libraries. Then, if z/OS still
has not found the program, the system abnormally ends the
job step.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / anonymous
I 've faced such situation where in the Load module is not in Steplib(private lib) but it was there in Joblib (system lib ) but still the job abends with load module not found issue S806 .
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sreedhar naidu dhekodna
First STEPLIB will override the JCLLIB. If the required
module is found then the JOBLIB won't be considered or if
the required module is not found in STEPLIB librarie(s)
then again the job will search for module in JOBLIB as well.
| Is This Answer Correct ? | 0 Yes | 6 No |
Answer / sangeetha
BUT WHAT WILL HAPPEN TO JOBLIB, CAN JOBLIB WILL OVERRIDE
STEPLIB?
| Is This Answer Correct ? | 2 Yes | 29 No |
What is a COND parameter in JCL?
jcl is like a complier....?
What is a S0C4 error ?
What does a disposition of (new,catlg,keep) for a dsn mean?
WHAT IS DUMMY IN JCL? HOW TO USE IT? CAN ANYBODY SEND PROGRAM ON THIS?
I HAVE A SEQUENTIAL FILE CONTAINING ONE RECORD IN WHICH I HAVE ONE FIELD AS CUSTOMER IDENTITY NUMBER FIELD WHICH IS A SIGNED FIELD. HOW TO SEQUENTIALLY INCREMENT THIS FIELD USING OVERLAY PARAMETER?.
If the proc stepname is excluded while overriding the COND, TIME, REGION and PARM parameters while calling the proc, will the override only apply to the first step in the proc or all the steps for all the above parameters?
How to search strings in multiple dataset with conditions 'string1 & string2'?
How to pass data to a program that is coded in an exec statement?
What does a disposition of (MOD,DELETE,DELETE) mean ?
i have a jcl in which 4 & 5 step creates a new generation. 4th step output is as input for the 6th step & 5th step output is used as input in the 7th step. How they are refered as in the 6th & 7th steps? If the job abends in 6th step then how the 5th step output is refered in 7th step?
Can a job have only steplib and no joblib ?