Instructions for downloading Serverpac Fixes ..Programs discussed in this readme: ftp - Windows Internet Explorer or Mozilla can be used by specifying ftp:// as the starting part of the url TRSMAIN - http://techsupport.services.ibm.com/390/trsmain.html .. File type of .bin 1. Download the file from the ftp site in binary to your pc ftp://ftp.software.ibm.com/s390/cbpacs/fixes/ userid: anonymous password: your-email-address 2. Preallocate a file on the host with the following DCB: RECFM=FB,LRECL=80,BLKSIZE=multiple of 80 3. Send the file from step 1 to the host in the file created in step 2 as binary fixed block data 4. Perform the following command: TSO RECEIVE INDSN(dsnname-from-step2) You will be prompted to enter the data set name. Pressing enter will create a new dataset with the correct DCB's. .. File type of .terse 1. Download the file from the ftp site in binary to your pc ftp://ftp.software.ibm.com/s390/cbpacs/fixes/ userid: anonymous password: your-email-address 2. Preallocate a file on the host with the following DCB: RECFM=FB,LRECL=1024,BLKSIZE=multiple of 1024 3. Send the file from step 1 to the host in the file created in step 2 as binary fixed block data 4. Unterse the file created in step2 into a new file created with the following DCB: RECFM=FB,LRECL=80,BLKSIZE=multiple of 80 .. The following sample jcl can be used: // jobcard //STEPNAME EXEC PGM=TRSMAIN,PARM='UNPACK' //SYSPRINT DD SYSOUT=*,DCB=(LRECL=133,BLKSIZE=12901,RECFM=FBA) //INFILE DD DISP=SHR,DSN=dsnname-from-step2 //OUTFILE DD DSN=newdsnname, // DISP=(NEW,CATLG,DELETE), // UNIT=3390, // DCB=(RECFM=FB,LRECL=80,BLKSIZE=8080), // SPACE=(8080,(500,100)) //* 5. Perform the following command: TSO RECEIVE INDSN(dsnname-from-step4) You will be prompted to enter the data set name. Pressing enter will create a new dataset with the correct DCB's.