When installing some CEM, LDAP and Datacom maintenance, how can a complete listing of all of the DDDEFs for CEM, LDAP and Datacom be determined?
Release : 6.0
Component : ACF2 for z/OS
The following batch SMP job can be used to list the DDDEFs for CEM, LDAP and Datacom:
//LISTPTFS EXEC PGM=GIMSMP,PARM='DATE=U',REGION=0M
//SMPCSI DD DISP=SHR,DSN=your.CEM60.CSI
//*
//* CAIT01 CEVM
//* CAIT02 DATACOM
//* CAIT04 LDAP
//*
//SMPHOLD DD DUMMY
//SMPCNTL DD *
SET BOUNDARY(CAIT01).
LIST DDDEF .
SET BOUNDARY(CAIT02).
LIST DDDEF .
SET BOUNDARY(CAIT04).
LIST DDDEF .
/*