How to pass the temp dataset form one JOB step to another?
Answer Posted / kumar
By coding DISP=PASS,Delete on dd statement,it passes the
dataset to
another dataset.
| Is This Answer Correct ? | 3 Yes | 1 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 /*
how do you access an uncataloged dataset in a jcl?
what is the use of JCL?
Is there any command to check wether the ps file is in sorted order?
Are there any set of rules for the names of the steps used in a job? What are they?
What is the function of //cntl statement?
what is “Cond= even” and “Cond=only”?
I have a job called careerride and some steps in it as step1,step2. But I want to execute step2 before step1 ? How do I do that?
what are the various stages of job processing?
how to compare two datasets without using superce because output is limited to 133 bytes
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length ----TRY
What is one line to pass PARM from JCL to COBOL?
what is a jcl?
How to pass the parameter in parm using linkage section ? (syntax)?
Explain the function of dd disp parameter?