-------------------------------------------------------------------- Downloading and Installing your Service Order *** DOWNLOAD DIRECTLY TO Z/OS HOST SYSTEM *** Select one of the following links on the download page for your order: - Download package (xxx MB) to host with RFNJOBS using FTPS - Download package (xxx MB) to host with RFNJOBH using HTTPS Run the displayed RFNJOBx JCL on your z/OS host system. This is the preferred method of transferring the order to your z/OS host system. See the job comments for details on how to customize it. The RFNJOBx JCL invokes the SMP/E RECEIVE FROMNETWORK command for the transfer of the package files to the download file system specified in the SMPNTS DD statement, uses the USS pax function to unzip the package files, then RECEIVEs the package content into your specified global zone. If you do not wish to RECEIVE the order as part of the transfer, then use the TRANSFERONLY operand in the RFNJOBx JCL. *** DOWNLOAD TO WORKSTATION FIRST THEN UPLOAD TO Z/OS HOST SYSTEM *** If you are unable to use RFNJOBx for the transfer, then select the following link on the Shopz download page for your order: - Download to your workstation using IBM Download Director (xxx MB) This link will download the order to your workstation using the Download Director java applet. After the download is complete, the files must be transferred to your z/OS host system UNIX environment, preserving the directory structure. You will not be able to unzip or browse the order files from your workstation. They must first be transferred to your z/OS Host system UNIX environment. You can upload the files in binary format from the workstation to the z/OS host. On a Windows system, you can use FTP from a command prompt to upload the files: ftp hostaddress uid password mkdir /smpnts/ordernumber cd /smpnts/ordernumber bin mput packagelocation/ordernumber/*.* mkdir /smpnts/ordernumber/SMPHOLD cd /smpnts/ordernumber/SMPHOLD bin mput packagelocation/ordernumber/SMPHOLD/*.* mkdir /smpnts/ordernumber/SMPPTFIN cd /smpnts/ordernumber/SMPPTFIN bin mput packagelocation/ordernumber/SMPPTFIN/*.* quit where: - hostaddress is the name or address of the z/OS host system - packagelocation is the directory path on your hard drive where Download Director stored the package - smpnts is the path name of the directory in the host file system where the package will reside - ordernumber is the service package order number *** SMP/E RECEIVE THE FILES FOR YOUR ORDER *** If you used your workstation as an intermediate node OR used the TRANSFERONLY operand in your RFNJOBx (SMP/E RECEIVE FROMNETWORK job), the SMP/E RECEIVE must still be done. A sample RECNTS job is provided below. This job invokes the SMP/E RECEIVE FROMNTS command to RECEIVE the package into your specified global zone. See the job comments for details on how to customize it. *** SYSTEM REQUIREMENTS *** SMP/E 3.5 or higher is required to support RECEIVE FROMNETWORK (using FTPS) and RECEIVE FROMNTS SMP/E 3.5 or higher, with the following PTF(s), is required to support RECEIVE FROMNETWORK (using HTTPS) - For SMP/E V3.6: Base HMP1J00 UO01693 JPN JMP1J11 UO01695 - For SMP/E V3.5: Base HMP1H00 UO01692 JPN JMP1H11 UO01694 *** SAMPLE RECNTS JOB *** //RECNTS JOB (accounting info),MSGLEVEL=(1,1),REGION=0M //* //* This job uses the SMP/E RECEIVE FROMNTS command //* to RECEIVE the SYSMODs and HOLDDATA in your order. //* //* Change the JOB statement as required to match your //* your installation's requirements. //* //* Change the CSI= parameter value on the RECNTS EXEC //* step to specify your SMP/E Global CSI data set name //* //* Change "your SMPLOG data set name" on the SMPLOG DD //* statement to your SMPLOG data set name //* //* Change the PATH = value on the SMPNTS DD statement //* to specify your SMP/E SMPNTS directory. Your order //* files must reside in a subdirectory of this path //* designated as "xxxxxxxx" in the RECEIVE FROMNTS(xxxxxxx) //* in the SMPCNTL input below. //* //* Change the "xxxxxxxx" in the RECEIVE FROMNTS(xxxxxxx) //* command, to the name of the subdirectory where you //* have stored the package files associated with your order. //* The "xxxxxxxx" is case sensitive and must be enclosed //* in single quotes if it contains any characters other than //* uppercase alphabetic, numeric, or national. //* //* Change the SMPJHOME DD Statement to point to the java //* runtime libraries so that SMP/E can use java for the SHA-1 //* package integrity check if ICSF is not active on your system. //* //* For SDK Java(TM) V7 the PATH might be: //* /usr/lpp/java/J7.1/ //* //RECNTS EXEC PGM=GIMSMP, // PARM='CSI=your SMP/E CSI data set name' //SMPOUT DD SYSOUT=* //SMPLOG DD DSN=your SMPLOG data set name,DISP=MOD //SMPNTS DD PATH='your SMPNTS directory name',PATHDISP=KEEP //*SMPJHOME DD PATH='/usr/lpp/java/xxxx/',PATHDISP=KEEP //SYSUT1 DD UNIT=SYSDA,SPACE=(3120,(380,760)) //SYSUT2 DD UNIT=SYSDA,SPACE=(3120,(380,760)) //SYSUT3 DD UNIT=SYSDA,SPACE=(3120,(380,760)) //SYSUT4 DD UNIT=SYSDA,SPACE=(3120,(380,760)) //SYSPRINT DD SYSOUT=* //SMPCNTL DD * SET BDY(GLOBAL). RECEIVE FROMNTS(xxxxxxxx). /*