What is a Proc ? why do we go for a Proc ? What are the
types of procs?Can we have nesting in Procs ?
Answer Posted / ram narayan
Hi, A Proc is nothing but it can be a set of Program which
is utilised by the Main JCL.It's basically used for
avoiding the number of lines of coding the JCL statements
in the main JCL and we can call the Proc's when ever needed
for performing a certain kind of action.
There are 2 types of Proc's and they are Instream & Catalog
proc.
The nesting in Procs are possible and the maximum number of
levels are 15 levels.
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
List the different jcl statements that are not permitted in the procedures?
What are s0c1, s0c4, s0c5, s0c7 and socb?
what JCL Procedures?
When you specify multiple datasets in a JOBLIB or STEPLIB, what factor determines the order?
what is SOC4 error?
What is NOTCAT ?
by using cond parameter maximum 8 cond can be coded in single cond means ?explain
What are the 2 types of parameters in dd statement?
Where & How Do You Code Identifier In Jcl?
how you can direct the data to spool using SYSOUT option?
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?
Explain the function of the steplib dd statement?
what are the various stages of job processing?
Explain the function of //jcllib statement?
//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*