Can you verify if the commands to request changes to the GSO MAINT Record. The GSO MAINT Record page does not show how to do Add Change Delete.
https://techdocs.broadcom.com/content/broadcom/techdocs/us/en/ca-mainframe-software/security/ca-acf2-for-z-os/16-0/administrating/administer-records/global-system-option-records-gso/system-maintenance-options-maint.html
Release : 16.0
Component : CA ACF2 for z/OS
The commands to issue an insert delete or change commands for GSO MAINT records are as follows:
Insert
T C(GSO)
INSERT MAINT.TEST LIBRARY(SYS1.LPALIB) LID(TESTUSRA) PGM(ABC)
QQQQ / MAINT.TEST LAST CHANGED BY USERABC ON 01/24/20-14:37
LIBRARY(SYS1.LPALIB) LID(TESTUSRA) PGM(ABC)
Delete
T C(GSO)
DEL MAINT.TEST
ACF6D073 QQQQ / MAINT.TEST RECORD DELETED
The change command depends on if a field is multi-valued or not. For fields that are not multi-valued, like LIBRARY and LID, the change command is a one to one relationship meaning that what is specified in the LIBRARY or LID on the change command will replace what was there before:
T C(GSO)
CHANGE MAINT.TEST LIBRARY(SYS1.LNKLIB)
QQQQ / MAINT.TEST LAST CHANGED BY USERABC ON 01/24/20-14:37
LIBRARY(SYS1.LNKLIB) LID(TESTUSRA) PGM(ABC)
For fields that are multi-valued, like PGM, the values may be added, deleted, or replaced in the list.
change maint.test pgm(def) add
QQQQ / MAINT.TEST LAST CHANGED BY USERABC ON 01/24/20-14:40
LIBRARY(SYS1.LPALIB) LID(TESTUSRA) PGM(ABC DEF)
change maint.test pgm(abc) del
QQQQ / MAINT.TEST LAST CHANGED BY USERABC ON 01/24/20-14:42
LIBRARY(SYS1.LPALIB) LID(TESTUSRA) PGM(DEF)
change maint.test pgm(qqq) rep
QQQQ / MAINT.TEST LAST CHANGED BY USERABC ON 01/24/20-14:42
LIBRARY(SYS1.LPALIB) LID(TESTUSRA) PGM(QQQ)