I have three files for one step i need to override the
third file how to do that in jcl?
Answer Posted / pp
you can override 3 file.
//stepname.ddname dd
// dd
// dd dsn=give third file here
stepname can be found in proc
ddname can be found in proc
| Is This Answer Correct ? | 39 Yes | 0 No |
Post New Answer View All Answers
How to pass the parameter in parm using linkage section ? (syntax)?
How jcl is used for testing batch programs?
What statement marks the beginning of an in-stream or cataloged procedure in jcl and assigns default values to parameters defined in the procedure?
what is the use of JCL?
What does a disposition of (MOD,DELETE,DELETE) mean ?
How can a jobs execution priority be modified?
Suppose I have five jobs to do. But I want to hold one?
Explain how can a stopped job be started again?
//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 job statement in jcl?
what happens in conversion stage in job processing?
What does it mean by Restart and Checkpoint in JCL ? How are checkpoints being taken and what is their usage ? How to use Checkpoint macro on a JOBSTEP ?
what is the difference between JES3 and JES2?
Explain how can return codes be tested before execution of a job step?
How to pass data to a program that is coded in an exec statement?