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

When you implemented Db2 managed security for the Spiffy database, you created a RACF group for payroll managers. You need to add the IDs of managers who can have access to payroll data to the group.

Procedure

  1. If you have not already done so, define a RACF group for the payroll managers.
  2. Add payroll manager IDs to the group.

Example

To add user PAYMGR, add RACF group PAYMGRS with PAYMGR as the owner, and add user ID USRT020 to PAYMGRS, use the following statements:
ADDUSER  PAYMGR  CLAUTH(DSNR USER) UACC(NONE)           
ADDGROUP PAYMGRS SUPGROUP(SYS1) OWNER(PAYMGR)           
CONNECT PAYMGR GROUP(PAYMGRS) AUTHORITY(JOIN) UACC(NONE)
ALTUSER PAYMGR DFLTGRP(PAYMGRS)                         
CONNECT USRT020 GROUP(PAYMGRS)