Previous Topic: Example of Your Second JCLNext Topic: Scanning AFP Records


Major Elements of Your Second JCL

This list explains the major elements of your second JCL.

//INPUT1 DD DSN=ACCT.ACCOUNTS.TABLES,
// DISP=OLD

A data set that contains the valid accounts for the vendors

//INPUT2 DD DSN=ACCT.VENDOR.DATA,
// DISP=OLD

A data set that contains the transactions you edited in TRJOB01

//INPUT3 DD DSN=ACCT.VENDOR.CORRECT.DATA,
// DISP=OLD

A data set that contains the corrected transactions from TRJOB01

//INPUT4 DD DSN=ACCT.VENDOR.MASTER.DATA(+0),
// DISP=OLD

The original input data set

//OUTPUT DD DSN=ACCT.VENDOR.MASTER.DATA(+1),
// DISP=(,CATLG),UNIT=DISK,
// SPACE=(TRK,(10,2),RLSE)

The output data set that contains the corrected transactions