Fix Download Instructions - Mainframe and Distributed
search cancel

Fix Download Instructions - Mainframe and Distributed

book

Article ID: 9561

calendar_today

Updated On:

Products

Activator eTrust ALERT eTrust ALERT for CICS ALERT Archiver ASM/ARCHIVE VSE-ESA OPTION ASM/Archive AutoAction AutoSys Job Management Adapter for AutoXfer Process Automation Manager Portal ARCserve Backup Client CICSORT Clipper COBOLVISION Analyzer CTO Distributed Dart Datesolver/2000 Distribulink EUREKA:Object EPIC VM Enterprise Endevor for Unix Archiver Disk Option EPIC Backup EPIC Access Option EPIC SUPER SYS EPIC for CMS System EPIC TAPE MANAGEMENT eTrust Antivirus Gateway for CVP eTrust Content Inspection Gateway eTrust Content Inspection Gateway Option for MSP/ISA EE eTrust Antivirus Gateway for Netscape eTrust VPN Enterprise Edition FAQS VM FAQS Automated Systems Operation Global Subsystem (GSS) ANDYNE MAINFRAME MISCELLANEOUS Inventory Discovery Server ARS Resource Management JARS Resource Management ACC Option JOBDOC JOBWATCH Look MAZDAMON Service Management Affiliate Technology Partner Fee Service Management Basic Technology Partner Fee Metanet MF - MISC OLD CODES Omniguard for CICS Omniguard Opera Connect PREVAIL Paramount XP CAM FOR DIST SYS Paramount FOR NAVIGRAPH/HOST Research Planmacs Unlimited Project Planner Remote Console PREVAIL/XP-AUTOMATION PHASE 1 Remote Console PREVAIL/XP AUTOMATION-RDF/SSM Raps Research Raveler Generic Non Product SOLVE:EPS Unicenter NetMaster Network Management for SNA Alexandria Sort System SPOOLMAN Storage Mainframe SYSTEM/SCHEDULER SYSTEM/SCHEDULER VSE-ESA OPTION System/Manager Tape/Manager VSE-ESA OPTION Output Management Document Server TNG Network and Systems Management Agent for CA-Datacom DFSMShsm Workstation Network and Systems Management UNIX SMTP Unicenter Management for Microsoft Exchange SMTP Option UNICENTER II Unicenter Network and Systems Management Database Performance Monitor Option UNICENTER OSM Database Command Center Mnt VM:DBA VM:DB Admin VM:DB Center VM:DB Developer VM:DB Editor VM:DB Monitor VM:DB Reorganizer VM:DB Reporter VM:DB Restore VM:DB REXX VM:DB SQLMAP VM:DB Suite VM:Migrate VM:Monitor VM:Notekeeper V/Solver VM:Webserver for Officevision VM:Webserver Secure VM:Webgateway VM:Webserver XMENU for z/VM VISION:COMBO for TSO VISION:DAGER VISION:ELEVEN VISION:EIGHTY VISION:Online VISION:IQ for Informix Automate

Issue/Introduction

The Support Portal supports the downloading of solutions to your PC. Some of these solutions are ASCII text and some are binary. These instructions also apply to PTF's, APAR's and solution packages.



Environment

Release:
Component: XSX

Resolution

To download all files associated with a solution click on the blue "Download Solution" button toward the top right of the solution's detail page.  Clicking the Download Solution button will present you with the available options that can be used for downloading.

If a solution has multiple files you can download specific files by clicking on the "Download Now" icon next to the file you wish to download within the Solutions Download section of the solution's detail page.

MAINFRAME PRODUCT SOLUTION HANDLING:
If the solution is for a mainframe product, you will have to transfer the file from your PC to the mainframe. Please note the following:
ASCII text solutions should be transferred to the mainframe using the "ASCII" or "CRLF" parameters. (CRLF means carriage return - line feed). This will cause the solution text to be translated to EBCDIC and will retain the original LRECL 80 format.

Most '.bin' files contain object or source module replacements. Some '.bin' files contain complete executables for non-mainframe platforms. They MUST NOT be treated as ASCII files. When transferring these files to the mainframe, please specify the "BINARY" transfer option. Since the data is stored in EBCDIC on the FTP server of StarTCC, binary transfer to your PC and then to your mainframe will result in retention of the original hex character values. Be sure that the resultant file on your mainframe is LRECL 80 and FIXED format.

If you are having difficulty getting the mainframe file in a fixed format, or the text is 'wrapping', try pre-allocating the file on the mainframe, and then upload the file into it.

NOTE REGARDING MVS/SMP SOLUTIONS: The FTP process puts a final carriage-return/line-feed at the end of the file. This will result in a blank line at the end of the solution. You will need to remove this blank line before running your SMP job to avoid SMP errors.

Each ".LOADMOD" file contains an MVS load module in NET DATA format. Treat these as BINARY. Be sure that the resultant file on your mainframe is LRECL 80 and FIXED format. Once the data is uploaded to your mainframe, you must "RECEIVE" the file into a PDS. Here is sample JCL that you can modify for your installation:

//RECVSTEP EXEC PGM=IKJEFT01,REGION=2M
//*STEPLIB DD DSN=SYS2.LINKLIB,DISP=SHR
//SYSUDUMP DD SYSOUT=* //SYSTSPRT DD SYSOUT=*
//SYSTSIN DD * RECEIVE INDATASET('uploded.dataset.name')
DATASET('new.pds.dataset.name')
RESTORE NEW - SPACE(2,2)
RELEASE CYLINDERS - UNIT(SYSDA)
VOLUME(volser)

 

Important: NEVER receive a file into an existing file. Always allocate a new load library for the load module you are about to receive. Differences in blocksize can cause PDS corruption during a receive.