IBM Security Z Security

Security for Z

Join this online user group to communicate across Z Security product users and IBM experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
  • 1.  GRPACC Attribute

    Posted 04/01/21 05:16 PM

    Looking for some CARLA code that will list the IDs that have the connect attribute GRPACC. I'm a fairly newbie and struggling with this.


    #ZSecurity
    #SupportMigration
    #Support


  • 2.  RE: GRPACC Attribute
    Best Answer

    Posted 04/05/21 07:09 PM

    Hi Mark,

    Try the CARLa script bellow :

    /* List of userIDs with GRPACC and related group */

    /* GRPACC = cgflag5=YES */

    newlist type=RACF

    select class=user segment=base cgflag5='YES'

    sortlist key('Userid',8) name('Name') cggrpnm('GROUP ') ,

    cgflag5('GRPACC',6)


    #ZSecurity
    #SupportMigration
    #Support


  • 3.  RE: GRPACC Attribute
    Best Answer

    Posted 04/06/21 09:53 AM