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
what are the types of abends that occur on job failure? And explain the possible causes of these
What is notcat 2 - gs?
Where can program checkpoints be stored for use in a restart?
How jcl is used for testing batch programs?
what is SOC4 error?
What is the function of dd disp parameter?
//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 to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length ----TRY
Is acct parameter mandatory?
Is it possible to define dd statements as you want?
What is use of restart and how to use it?
Where & How Do You Code Identifier In Jcl?
What are steplib and joblib? What for they are used?
What is the function of the steplib dd statement?
I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?