The client has used the CA DADS Plus for CICS feature to store their DFHRPL load libraries in the CA DADS Plus control file. Then at CICS Startup time the load libraries used in the CICS region are loaded from the CA DADS Plus control file. The client would now like to delete the load libraries from the CA DADS Plus control file.
When CA DADS Plus for CICS installs load libraries store in the control file the following message will appear in the DADSLOG attached to the CICS region.
DP833: THE FOLLOWING LIBRARIES HAVE BEEN ALLOCATED TO DFHRPL (STATIC)
DP835: CICSSYS.CTS520.GA.CICS.RSU1703.SDFHLOAD CICS10 3390 SHR
DP835: CEE.SCEERUN MVR22C 3390 SHR
DP835: CEE.SCEECICS MVR22C 3390 SHR
DP833: THE FOLLOWING LIBRARIES HAVE BEEN ALLOCATED TO DFHRPL (DYNAMIC)
DP835: AD1.CICS69.OPTSR91 TSU022 3390 SHR
DP835: AD1.I0763428.LOAD TSU028 3390 SHR
DP835: INTERT91.S1510NON.CABALOAD TSU051 3390 SHR
DP835: INTERT91.S1510NON.CAVHLOAD TSU031 3390 SHR
DP835: SYMDUM91.GA.CSM.CABALOAD TSU035 3390 SHR
DP835: AD1.I0342751.N822GACC.PDSE SMS012 3390 SHR
DP835: INTERT91.BASE.$INSTALL.DEMOLOAD OSI010 3390 SHR
DP834: END OF DFHRPL LIBRARY LIST
The JCL below will produce a report of any load libraries stored in the CA DADS Plus for CICS control file.
//STEP01 EXEC PGM=DADRBTCH
//STEPLIB DD DSN=DADSPL40.P0507.SMP.LOADLIB,DISP=SHR
//DADS01 DD DISP=SHR,DSN=CICS67.DADS.CONTROL
//REPORT DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
LIST RPL
/*
//
The JCL below will delete the load libraries stored in the CA DADS Plus for CICS control file. The CICS region must be down in order to delete the load libraries from the control file.
//DELETE EXEC PGM=DADRCONV,REGION=700K
//STEPLIB DD DSN=DADSPL40.P0507.SMP.LOADLIB,DISP=SHR
//DADS01 DD DISP=SHR,DSN=CICS70.DADS.CONTROL
//SYSPRINT DD SYSOUT=*,DCB=(LRECL=133,RECFM=FBA,BLKSIZE=133)
DELETE RPL
/*
//