Previous Topic: Gather InformationNext Topic: Access the Online Documentation


Copy the INSTALL Data Set

Create and submit an IEBCOPY job similar to the one shown here. This job copies the SAMPJCL data set from the distribution tape to a DASD volume.

You must supply the values shown in italics:

//TPXLOAD JOB supply a job card here
//STEP01 EXEC PGM=IEBCOPY
//SYSPRINT DD SYSOUT=*
//INDD DD UNIT=TAPE,
// VOL=SER=supply here the volser shown on tape label,
// LABEL=(1,SL),
// DISP=OLD,
// DSN=CAI.TPX.SAMPJCL
//OUTDD DD DSN=prefix.SAMPJCL,
// DISP=(NEW,CATLG),
// UNIT=SYSDA,
// VOL=SER=supply a DASD volume here,
// SPACE=(3200,(900,50,30)),
// DCB=(LRECL=80,RECFM=FB)
//SYSIN DD *
  COPY INDD=((INDD,R)),OUTDD=OUTDD

The task is complete when your IEBCOPY job executes successfully (with a condition code of 0).