Where can I find an example of JCL using IBM VTAPE to install CA-CIS/VSE and GSS/VSE into an existing Library (to upgrade to more current Service Pack)?
search cancel

Where can I find an example of JCL using IBM VTAPE to install CA-CIS/VSE and GSS/VSE into an existing Library (to upgrade to more current Service Pack)?

book

Article ID: 24936

calendar_today

Updated On:

Products

CIS

Issue/Introduction

We want to upgrade CA-CIS 1.4 and GSS/VSE 5.0 to a more current Service Pack,

Where can I find an example of JCL using IBM VTAPE to install CA-CIS/VSE and GSS/VSE into an existing Library ?

Environment

Release: CA90SV00100-1.4-CIS
Component:

Resolution

The following JCL Example can be used to Install CA-CIS/VSE into the existing Library (** NOTE ** the MTC FSF Statement):

// JOB INSTALL CA-CIS/VSE INTO EXISTING LIBRARY 

// SETPARM LIBNAME=libname 

// SETPARM SUBNAME=sublib 

// SETPARM TAPECUU=cuu 

// SETPARM IPADDR=?IPADDR                      

// SETPARM AWSFILE=?AWSFILE                    

// ON $CANCEL GOTO RELTAP 

/* DVCDN 481 

    VTAPE STOP,UNIT=&TAPECUU                      

    VTAPE START,UNIT=&tapecuu,LOC=&ipaddr,        

    FILE='c:?dire?&awsfile.AWS',READ 

/* DVCUP &TAPECUU

// MTC REW,&TAPECUU

// MTC FSF,&TAPECUU,99 FOR CA-CIS ONLY

// MTC FSF,&TAPECUU,99 FOR CA-CIS ONLY

// ASSGN SYS006,&TAPECUU

// DLBL lib,'your.lib',99/365

// EXTENT SYS005,vvvvvv,1,0,sss,nnn

// ASSGN SYS005,DISK,VOL=vvvvv2,SHR

// DLBL IJSYSHF,'your.history.file',99/365

// EXTENT SYS010,wwwwww,1,0,sss,nn

// ASSGN SYS010,DISK,VOL=wwwwww,SHR

// EXEC MSHP,SIZE=760K INSTALL PROD PROD INTO=lib.sublib

/*

/& VTAPE STOP,UNIT=&TAPECUU

 

The following JCL Example can be used to Install GSS/VSE into the existing Library (** NOTE ** the different MTC FSF Statement):

// JOB INSTALL GSS/VSE INTO EXISTING LIBRARY   

// SETPARM LIBNAME=libname                     

// SETPARM SUBNAME=sublib                      

// SETPARM TAPECUU=cuu                         

// SETPARM IPADDR=?IPADDR                      

// SETPARM AWSFILE=?AWSFILE                    

// ON $CANCEL GOTO RELTAP                      

/* DVCDN 481                                   

    VTAPE STOP,UNIT=&TAPECUU                      

    VTAPE START,UNIT=&tapecuu,LOC=&ipaddr,        

    FILE='c:?dire?&awsfile.AWS',READ 

/* DVCUP &TAPECUU

// MTC REW,&TAPECUU

// MTC FSF,&TAPECUU,99 FOR CA-GSS ONLY

// MTC FSF,&TAPECUU,90 FOR CA-GSS ONLY

// ASSGN SYS006,&TAPECUU

// DLBL lib,'your.lib',99/365

// EXTENT SYS005,vvvvvv,1,0,sss,nnn

// ASSGN SYS005,DISK,VOL=vvvvv2,SHR

// DLBL IJSYSHF,'your.history.file',99/365

// EXTENT SYS010,wwwwww,1,0,sss,nn

// ASSGN SYS010,DISK,VOL=wwwwww,SHR

// EXEC MSHP,SIZE=760K INSTALL PROD PROD INTO=lib.sublib

/*

/& VTAPE STOP,UNIT=&TAPECUU