
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
- Define a RACF group for the managers.
- Add manager IDs to the group.
Example
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)
