Sample JCL to upload a LOADLIB to Broadcom support case
search cancel

Sample JCL to upload a LOADLIB to Broadcom support case

book

Article ID: 233769

calendar_today

Updated On:

Products

Common Services

Issue/Introduction

Use the following JCL sample to XMIT, TERSE & UPLOAD a Load Library into Broadcom support cases.

For other datasets (Sequential datasets; Partitioned datasets; System logs; Product logs; DUMPs) use JCL sample to TERSE & UPLOAD files to Broadcom support case.

Resolution

In order to upload a Load library dataset into Broadcom Support case, please follow the 2 steps described below:

STEP 01: Submit the XMIT JCL sample:

//*
//*   JCL sample to XMIT a LOAD Library dataset
//*                                  
//ALLOC     EXEC PGM=IEFBR14,REGION=2M
//MYOUTPUT  DD DISP=(NEW,CATLG,DELETE),                         
//             SPACE=(CYL,(400,400)),
//             DCB=(LRECL=80,BLKSIZE=3120,RECFM=FB),
//             DSN=new.loadlib.for.XMIT
//***************************************************************
//ISPF    EXEC PGM=IKJEFT1B,REGION=4096K,DYNAMNBR=100
//ISPLOG   DD DCB=(LRECL=125,BLKSIZE=129,RECFM=VA),
//            SYSOUT=*
//SYSTSPRT DD DCB=(RECFM=F,LRECL=133,BLKSIZE=133),
//            SYSOUT=*
//ISPCTL1  DD UNIT=SYSDA,SPACE=(9040,(100,50)),
//            DCB=(RECFM=FB,LRECL=80,BLKSIZE=6160)
//ISPFILE  DD UNIT=SYSDA,SPACE=(9040,(50,50,45)),
//            DCB=(DSORG=PO,RECFM=FB,LRECL=80,BLKSIZE=9040)
//ISPPROF  DD UNIT=SYSDA,SPACE=(TRK,(10,1,10)),
//            DSN=&&ISPPROF,
//            DCB=(RECFM=FB,LRECL=80,BLKSIZE=9040)
//ISPTLIB  DD DISP=SHR,DSN=ISP.SISPTENU
//ISPMLIB  DD DISP=SHR,DSN=ISP.SISPMENU
//ISPPLIB  DD DISP=SHR,DSN=ISP.SISPPENU
//ISPSLIB  DD DISP=SHR,DSN=ISP.SISPSLIB
//INPUT    DD DISP=SHR,DSN=new.loadlib.for.XMIT
//SYSTSIN DD *
XMIT nodename.userid DSNAME('input.to.be.XMITed') -
        OUTDS('new.loadlib.for.XMIT')
/*

where:
input.to.be.XMITed is the input file you want to compress and attach to the case.
new.loadlib.for.XMIT is how the output will be named.
nodename is the hostname used for  the system.
userid is your userid.

STEP 02: Once you have submitted the XMIT job and it completed successfully, please run the following job which will TERSE and UPLOAD the file into Broadcom support case:

//*
//*   JCL sample to TERSE & UPLOAD
//*     file into Broadcom case
//*
//TERSE1 EXEC PGM=TRSMAIN,PARM='PACK'
//SYSPRINT DD SYSOUT=*
//INFILE   DD DISP=SHR,DSN=new.loadlib.for.XMIT
//OUTFILE  DD DSN=
tersed.dataset.name,
//            DISP=(NEW,CATLG,DELETE),
//            UNIT=SYSDA,SPACE=(CYL,(750,200),RLSE)
//*
//FTPSTEP3 EXEC PGM=FTP,PARM='(EXIT=08'
//SYSTCPD  DD DSN=VTAM.TCPIP.TCPIP.DATA,DISP=SHR
//SYSPRINT DD SYSOUT=*
//OUTPUT   DD SYSOUT=*
//INPUT    DD *
supportftp.broadcom.com
[email protected]
password

cd /siteid/case number
/files_from_customer/
bin
put tersed.dataset.name File.name.on.case

quit
//


where:
new.loadlib.for.XMIT is the file you created at step 1) XMIT above, the one you want to compress and attach to the case.
tersed.dataset.name is how the output will be named.
[email protected] is the email address you use to log on to Broadcom Support Online.
password is the password you use to log on to Broadcom Support Online.
siteid is your SiteID setup on Broadcom Support Online. This is a 7-digit numeric padded on the left with zeroes, e.g. 0123456.
case number is the case number you want to upload the file into.
File.name.on.case is the name the file will have on the FTP server (name which shows up on the case). As best practice,  it is a good idea to include a qualifier of .TRS in the File.name.on.case to indicate to Broadcom personnel that the file is tersed.