what is JCLLIB and PROCLIB in jcl and their syntax
Answers were Sorted based on User's Feedback
Answer / raghu
//proccall jcllib order=proclib.name,disp=shr
//proclib dd dsn=proclib.name,disp=shr
| Is This Answer Correct ? | 6 Yes | 3 No |
Answer / 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 |
Answer / ch.mohan
jcllib is identify the path of proclib,and proclib is
identify the procedure name
syntax
//proclib jcllib order=userid.name.proclib.filename
| Is This Answer Correct ? | 6 Yes | 9 No |
wht do u mean by inrec and outrec ?
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?
Is acct parameter mandatory?
What does the keyword DCB mean and what are some of the keywords associated with it?
In a JCL if previous steps return code is greater than 0 or 4 then the next step will not execute. But the job will be successfull with the maximum return code. How can we reset this maximum return code to '0' regardless of return codes of any steps?
What is the error code SOC01 indicate ?
what is the purpose of coding class parameter in job statement?
How many parameters are there to a DISP statement and what are their uses ?
what is the cond=even only
What is jcl in mainframe?
When concatenating two PDS can any one PDS can have empty dataset i.e without any value(Dummy).
Hi, My dataset have multiple records, say 100. I want to start copy records only after a record contain a specific value that may be in a specific position. Secondly I want to stop copying rest records if certain record contains a specific value. Can it be done using SORT/ICETOOL utilities?