SUBSYSCP: Copying SUBSYSI Into a Separate Library

Use the SUBSYSCP JCL below to copy the IBI Subsystem modules from FOCLIB.LOAD to a secured library.

Note: When applying maintenance, such as a PTF or Service Pack, the IBI Subsystem modules must be in FOCLIB.LOAD. If they were moved to a separate library, copy them back into FOCLIB.LOAD and after executing the maintenance job, return them to your subsystem library with SUBSYSCP.

//*** Your JOB card
//*
//*------------------------------------------------------------------*
//*                                                                  *
//* This job can be used to move the IBI Subsystem modules from      *
//* FOCLIB.LOAD to a secured library.  The target library must be    *
//* APF-authorized.                                                  *
//*                                                                  *
//* If the zap provided in SUBSYSNM has been run, ensure that this   *
//* job is re-run.                                                   *
//*                                                                  *
//* Remove all members of SSLIB prior to running this.               *
//*                                                                  *
//* It is recommended that you delete the modules from FOCLIB.LOAD   *
//* after this job is run.                                           *
//*                                                                  *
//*------------------------------------------------------------------*
//*
//COPY    EXEC PGM=IEBCOPY
//FOCLIB  DD   DISP=SHR,DSN=prefix.FOCLIB.LOAD
//SSLIB   DD   DISP=OLD,DSN=prefix.SUBSYS.LOAD
//SYSIN   DD   *
 COPYMOD INDD=FOCLIB,OUTDD=SSLIB
 S M=(SUBSYSI,SUBCSAMD,SUBPCRMD,SUBPERMD,SUBVECMD)
/*
//

Information Builders