hi guys
what r the diff types of procs in jcl?
bye
ramya
Answer Posted / dhans
Instream and Catalog procedure
Catalog Procedures:
A cataloged procedure is a set of JCL statements that are stored as a member in a partitioned data set.
Multiple jobs can invoke and use the same catalog procedure.
The main reason for using catalog procedures is to avoid coding the same JCL again and again.
Pend statement is optional in catalog procedure. So you do not need to code it in your JCL.
Instream Procedures:
The EXEC statements between the PROC and PEND statements are not executed when they are first encountered in the job stream. Instead, they are saved as a procedure to be called later.
Refer the below link
https://youtu.be/vJF478anFvM
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what are the various stages of job processing?
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
What is the function of //cntl statement?
What are steplib and joblib? What for they are used?
what disp parameter we mention for creation of temporary dataset so that we can use it in later steps?
List the various advantages of using jcl language?
Can we use DISP=SHR in output file in JCL
How can the submitting users racf authority be overridden in a job stream?
Suppose there are 2 Input files Infile-1 and Infile-2. Both the Files contain Employee Records. You need to compare both the files and Write the Common Records in third file named Outfile. How can we do this using File-Aid?
which parameter is use to declare the name of dataset in dd statement?
What are s0c1, s0c4, s0c5, s0c7 and socb?
What is NOTCAT ?
when can a job time-out occur? How to overcome that?
define cond parameter in jcl?
What are hierarchy levels in jcl?