How to list CEVM DDDEFS used for CEVM, LDAP and Datacom?
search cancel

How to list CEVM DDDEFS used for CEVM, LDAP and Datacom?

book

Article ID: 237968

calendar_today

Updated On:

Products

Compliance Event Manager

Issue/Introduction

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?

Environment

Release : 6.0

Component : ACF2 for z/OS

Resolution

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 .                                            
/*