IF we are calling a PROC from Jcl...This Proc have 3 steps
in it and we want to execute only the second step using the
JCL, How to do it??
Please give the answer ASAP:)
Answer Posted / sowdamini
we can override step1 and 3 by dd dummy statements.
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
Differentiate between the joblib and the steplib statements?
what is DSN in JCL and what are the parameters to declare the DSN?
Matching Logic in Jcl not in cobol.Could any one please answer this question
Name the statement which can be used to send data to another mvs jes3 node?
What is the function of a dd statement?
which utility is used to sort a file in jcl?
What is the function of dd disp parameter?
Give the syntax of job specifying jcl statement.
how to run batch program without jcl?
//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 db2 program(PGM A) where other program (PGM B) will call this program and passes some 50 fields data to PGM A. PGM A has some layout in which it receives the data from PGM B. And this layout has been copied in the linkage section pf PGM A. After getting the data, PGM A writes the data in a flat file in the same layout which it receives from PGM B. PGM B is a simple COBOL pgm. Please provide a JCL to run these programs.
Can we call instream to catalog and catalog to instream?
what is use of disp parameter in dd statement?
what is the purpose of coding notify parameter in job statement?
Explain the function of job statement in jcl?