Can a PROC CALL another PROC ? (in both Instream and
Cataloged cases) ?
Answer Posted / karthik
A PROC can call another proc in catalog procedure, You can
go upto maxiumum of 15 levels
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
//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 /*
I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
For what purpose steplib and joblib are used ?
Are there any set of rules for the names of the steps used in a job?
how to run batch program without jcl?
What are the jcl procedures?
Is their any limit for data sets?
What are s0c1, s0c4, s0c5, s0c7 and socb?
Explain in DD statement what is the use of DCB parameter?
how to do automated restart when a job abends?
what is DSN parameter and DISP parameter is used for?
how would you create a temporary dataset? And where will you use them?
What is the function of the steplib dd statement?
is there any way to execute more than one proc in the same exec statement at the same time..?