if we are specifing joblib as well as steplib in job
then at the time of execution how the process will complete
Answers were Sorted based on User's Feedback
Answer / abhinandan
Above answer given is wrong. the job will execute and
steplib will overide the joblib. means job will ignore the
load module kept in it, job will pick up the load module
from the steplib for that particular step where steplib is
mentioned.
| Is This Answer Correct ? | 15 Yes | 0 No |
Answer / om prakash yadav
The JOBLIB statement is placed after the JOB statement and
is effective for all JOB steps. It cancot be placed a
cateloged procedure. The STEPLIB statememnt is placed after
the EXEC statement and is effective for that job step only.
Unlike the JOBLIB statement, the STEPLIB can be placed in a
cataloged procedure.
If both the JOBLIB and STEPLIB statement are coded, then the
STEPLIB specification will override the JOBLIB specification
for that job step.
The specification of the STEPLIB will continue for any steps.
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / vikas bhardwaj
Ramesh's ans is wrong, Abhinandan is correct
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / ramesh
it cant execute the program since while steplib and joblib
both are coded in jcl.joblib takes the most preference so
that it cant be executed.
| Is This Answer Correct ? | 1 Yes | 14 No |
A job has 90 steps i want to execute only step7 and step15
What is a Dummy Utility and what it does ?
What are the differences between JES2 & JES3 ?
How many types of libraries are there in JCL ?
Can we Execute a job without specifying Job Name in the Job Card?
How dummy is used in jcl?
whats the diff bw the evaluate also and and?
List some valid operation codes in JCL
Hi Guyz, My requirement is to empty out a PS file but not to delete. How would I do that. Is there any Utility. If any other way, plz answer. Thanks.
9 Answers iGate, Lehman Brothers,
A dd statement consists of 4 fields. Name them?
Can you code instream data in a PROC ?
with out sorting how to copy records from one file to another file using jcl.Mean I have one input file in which the record are like 1,6,5,4,2,3(for example) and i want to copy to output file from top to bottom(without sorting) like 3,2,4,5,6,1.so I want the JCL for this.cna any one can answers?