Previous Topic: Installing Your Product from Tape

Next Topic: Modify and Run the Job INSTALL


Copy Installation Library from Tape

Use this procedure to copy the installation library from a tape.

Follow these steps:

  1. Modify the sample JCL to fit the specification of your site. If you are using a tape management system (TMS), consider using the following version of the label parameter:
    //      LABEL=(1,SL,EXPDT=98000)
    
  2. To modify the job stream, replace the following lowercase, italicized items in the INSTLIB DD of the sample JCL with the information described here to fit the needs of your site.

    This JCL assumes that you are not using a TMS that requires the EXPDT=98000 on the LABEL parameter. This label identifies the distribution tape as being outside the control of the TMS, for example, CA 1 or CA TLMS TM.

    sysview

    Defines the high-level qualifier (HLQ) for the installation library. SYSVIEW is the default qualifier for all the libraries.

    Note: Alter this parameter to meet the naming conventions and requirements of your site.

    volume

    Specifies the volume serial number where the installation library is to reside.

    The job stream to modify follows:

    //TAPEINST JOB (0000) 
    //* 
    //*===================================================================* 
    //*                                                                   * 
    //* Sample job to create the sysview.SAMPJCL data set.                * 
    //*                                                                   * 
    //*===================================================================* 
    //* 
    // SET TAPEIN='CAI.SAMPJCL' 
    // SET TAPEVOL='SYD500' 
    //*  
    // SET SAMPJCL='sysview.SAMPJCL' 
    // SET VOLUME='volume' 
    //* 
    //COPY     EXEC PGM=IEBCOPY 
    //SYSUT3   DD UNIT=SYSDA,SPACE=(CYL,(5,1)) 
    //SYSUT4   DD UNIT=SYSDA,SPACE=(CYL,(5,1)) 
    //SYSPRINT DD SYSOUT=* 
    //* 
    //IN       DD DSN=&TAPEIN, 
    //            DISP=OLD, 
    //            UNIT=TAPE, 
    //            VOL=SER=&TAPEVOL, 
    //            LABEL=(1,SL) 
    //* 
    //SAMPJCL  DD DSN=&SAMPJCL, 
    //            DISP=(NEW,CATLG,DELETE), 
    //            UNIT=SYSDA, 
    //            VOL=SER=&VOLUME, 
    //            DCB=(RECFM=FB,LRECL=80,BLKSIZE=6160),
    //            SPACE=(CYL,(05,02,45))
    //*                                 
    //SYSIN    DD *                     
     COPY INDD=((IN,R)),OUTDD=SAMPJCL
    /*
    
  3. Submit the modified sample JCL.

The installation library is downloaded from the product tape.