Start of change

Creating a RACF group for managers and adding managers to the group

As a first step in giving managers the RACF SELECT privilege on the DEPTMGR table, you need to create a RACF group, and add the managers to it.

Procedure

  1. Define a RACF group for the managers.
  2. Add manager IDs to the group.

Example

To add user MGROWNER, add RACF group MGRS with MGROWNER as the owner, and add user ID USRT006 to MGRS, use the following statements:
ADDUSER  MGROWNER  CLAUTH(DSNR USER) UACC(NONE)          
ADDGROUP MGRS SUPGROUP(SYS1) OWNER(MGROWNER)           
CONNECT MGROWNER GROUP(MGRS) AUTHORITY(JOIN) UACC(NONE)
ALTUSER MGROWNER DFLTGRP(MGRS)                         
CONNECT USRT006 GROUP(MGRS)
End of change