A statement about PROCs is "
In PROCs, Symbolic Parameters can be assigned on PROC and
EXEC", BUT On which EXEC,
(i) On the JCL's EXEC which is calling to PROC1.
(Inside JCL, EXEC PROC1)
(ii) or On the PROC's EXEC where it calls the PGM1.
(Inside PROC, EXEC PGM=PGM1)
Post New Answer View All Answers
what is the compile process of cobol program expalin with code
how to do automated restart when a job abends?
How to code these statements in JCL: CLEANUP INITIAL(NO) RESTART(NO) DYNALLOC(NO) job definition..?
which utility is used to sort a file in jcl?
if the submitter of a job wants to inform another user about the job completion, how can it be done?
//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 /*
Explain the function of //cntl statement?
What is the function of //cntl statement?
What is the purpose of disp parameter?
What is the function of job statement in jcl?
Explain dd statement in jcl?
Is it possible to left uncode disp? If yes, how?
what is use of space parameter in dd statement?
Does jcl support automatic restart?
How do you run a COBOL batch program from a JCL? How do you run a COBOL/DB2 program?