We share the ACF2 databases and each system uses a different sysid. How can I list all of the GSO records that are being used in one set of output or display?
search cancel

We share the ACF2 databases and each system uses a different sysid. How can I list all of the GSO records that are being used in one set of output or display?

book

Article ID: 38677

calendar_today

Updated On:

Products

ACF2 ACF2 - DB2 Option ACF2 for zVM ACF2 - z/OS ACF2 - MISC PanApt PanAudit

Issue/Introduction

We share the ACF2 databases and each system uses a different sysid.  How can I list all of the GSO records that are being used in one set of output or display?

Environment

Release:
Component: ACF2MS

Resolution

By masking the SYSID when doing the SET command, you can see multiple SYSID records at once.

In TSO, get into ACF mode and issue the following commands:

tso acf

ACF
set control(gso) msysid(********)
list like(-)

This will display all GSO records that are on this database.  For batch, use ACFBATCH in a similar way as the ACF command:

//jobcard
//STEP1    EXEC PGM=ACFBATCH
//SYSPRINT DD SYSOUT=*                                     
//SYSIN    DD  *                          
 SET CONTROL(GSO) MSYSID(********)
 LIST LIKE(-)             
/*                                       
//