The method for modifying ALLOUPLD created from transmitted
datasets is explained below.
The following numbers correspond to the numbers appearing on the right side of the sample JCL. Modify the underlined parts in the sample JCL as follows:
- (4)-(16)
-
Change the prefix for the name for the dataset transmission destination from HITACHI. to the TSO/E user ID (BCMUSER.).
- (17)
-
Change the prefix for the name for the dataset transmission destination from HITACHI to the TSO/E user ID (BCMUSER).
//ALLOUPLD JOB (ACCT#),'ALLO UPLD FILES', -----(1) // REGION=0M,CLASS=A, -----(2) // MSGLEVEL=(1,1),MSGCLASS=X,NOTIFY=&SYSUID -----(3) //********************************************************************* //* //* All Rights Reserved. Copyright (C) 2003, 2023, Hitachi, Ltd. //* //********************************************************************* //* //* This JCL allocates data sets in preparation for storing //* the data files for installation of BC Manager from the //* distribution CD. //* //* Instructions: //* 1. Change 'HITACHI' to the current USERID. //* 2. Change '#tso01' to VOLSER of your device. //* 3. Submit this JCL to allocate the data sets for storing //* the data files. //* 4. Transfer the unzipped .XMIT files to the allocated data sets //* via FTP in "BINARY" mode. //* 5. See RECVUPLD for further procedures. //* //* //* Remove all BC Manager files. //* //CLEAN EXEC PGM=IDCAMS //SYSPRINT DD SYSOUT=* //SYSIN DD * DELETE HITACHI.CHYKnnn.SMPMCS.XMIT -----(4) DELETE HITACHI.CHYKnnn.F1.XMIT -----(5) DELETE HITACHI.CHYKnnn.F2.XMIT -----(6) DELETE HITACHI.CHYKnnn.F3.XMIT -----(7) DELETE HITACHI.CHYKnnn.F4.XMIT -----(8) DELETE HITACHI.CHYKnnn.F5.XMIT -----(9) DELETE HITACHI.CHYKnnn.F6.XMIT -----(10) DELETE HITACHI.CHYKnnn.F7.XMIT -----(11) DELETE HITACHI.CHYKnnn.F8.XMIT -----(12) DELETE HITACHI.CHYKnnn.F9.XMIT -----(13) DELETE HITACHI.CHYKaaa.SMPMCS.XMIT -----(14) DELETE HITACHI.CHYKbbb.SMPMCS.XMIT -----(15) DELETE HITACHI.CHYKccc.SMPMCS.XMIT -----(16) SET MAXCC = 0 /* //* //* Allocate the data sets for storing the data files. //* //* Value Description //* -------- -------------------------------- // SET PFX=HITACHI Data set prefix -----(17) // SET VRM=CHYKnnn Version of BC Manager // SET VSN=#tso01 VOLSER -----(18) // SET VRMF1=CHYKaaa Version of addition function // SET VRMF2=CHYKbbb Version of addition function // SET VRMF3=CHYKccc Version of addition function //* //BR14 EXEC PGM=IEFBR14 //SMPMCS DD DSN=&PFX..&VRM..SMPMCS.XMIT, // UNIT=SYSDA,VOL=SER=&VSN, // SPACE=(TRK,(15)), // DCB=(DSORG=PS,RECFM=FB,LRECL=80,BLKSIZE=3120), // DISP=(,CATLG,DELETE) //F1 DD DSN=&PFX..&VRM..F1.XMIT, // UNIT=SYSDA,VOL=SER=&VSN, // SPACE=(TRK,(30)), // DCB=(DSORG=PS,RECFM=FB,LRECL=80,BLKSIZE=3120), // DISP=(,CATLG,DELETE) //F2 DD DSN=&PFX..&VRM..F2.XMIT, // UNIT=SYSDA,VOL=SER=&VSN, // SPACE=(TRK,(105)), // DCB=(DSORG=PS,RECFM=FB,LRECL=80,BLKSIZE=3120), // DISP=(,CATLG,DELETE) //F3 DD DSN=&PFX..&VRM..F3.XMIT, // UNIT=SYSDA,VOL=SER=&VSN, // SPACE=(TRK,(15)), // DCB=(DSORG=PS,RECFM=FB,LRECL=80,BLKSIZE=3120), // DISP=(,CATLG,DELETE) //F4 DD DSN=&PFX..&VRM..F4.XMIT, // UNIT=SYSDA,VOL=SER=&VSN, // SPACE=(TRK,(15)), // DCB=(DSORG=PS,RECFM=FB,LRECL=80,BLKSIZE=3120), // DISP=(,CATLG,DELETE) //F5 DD DSN=&PFX..&VRM..F5.XMIT, // UNIT=SYSDA,VOL=SER=&VSN, // SPACE=(TRK,(30)), // DCB=(DSORG=PS,RECFM=FB,LRECL=80,BLKSIZE=3120), // DISP=(,CATLG,DELETE) //F6 DD DSN=&PFX..&VRM..F6.XMIT, // UNIT=SYSDA,VOL=SER=&VSN, // SPACE=(TRK,(30)), // DCB=(DSORG=PS,RECFM=FB,LRECL=80,BLKSIZE=3120), // DISP=(,CATLG,DELETE) //F7 DD DSN=&PFX..&VRM..F7.XMIT, // UNIT=SYSDA,VOL=SER=&VSN, // SPACE=(TRK,(45)), // DCB=(DSORG=PS,RECFM=FB,LRECL=80,BLKSIZE=3120), // DISP=(,CATLG,DELETE) //F8 DD DSN=&PFX..&VRM..F8.XMIT, // UNIT=SYSDA,VOL=SER=&VSN, // SPACE=(TRK,(15)), // DCB=(DSORG=PS,RECFM=FB,LRECL=80,BLKSIZE=3120), // DISP=(,CATLG,DELETE) //F9 DD DSN=&PFX..&VRM..F9.XMIT, // UNIT=SYSDA,VOL=SER=&VSN, // SPACE=(TRK,(15)), // DCB=(DSORG=PS,RECFM=FB,LRECL=80,BLKSIZE=3120), // DISP=(,CATLG,DELETE) //SMPMCSF1 DD DSN=&PFX..&VRMF1..SMPMCS.XMIT, // UNIT=SYSDA,VOL=SER=&VSN, // SPACE=(TRK,(15)), // DCB=(DSORG=PS,RECFM=FB,LRECL=80,BLKSIZE=3120), // DISP=(,CATLG,DELETE) //SMPMCSF2 DD DSN=&PFX..&VRMF2..SMPMCS.XMIT, // UNIT=SYSDA,VOL=SER=&VSN, // SPACE=(TRK,(15)), // DCB=(DSORG=PS,RECFM=FB,LRECL=80,BLKSIZE=3120), // DISP=(,CATLG,DELETE) //SMPMCSF3 DD DSN=&PFX..&VRMF3..SMPMCS.XMIT, // UNIT=SYSDA,VOL=SER=&VSN, // SPACE=(TRK,(15)), // DCB=(DSORG=PS,RECFM=FB,LRECL=80,BLKSIZE=3120), // DISP=(,CATLG,DELETE)