ACF2 commands to set up the HIS started task
search cancel

ACF2 commands to set up the HIS started task

book

Article ID: 282133

calendar_today

Updated On: 04-16-2024

Products

ACF2 - z/OS ACF2 ACF2 - MISC

Issue/Introduction

This document translates the following RACF commands to set up HIS into the equivalent ACF2 commands.

Steps for starting the HIS address space

  1. Define the HIS-started task to RACF.
    To set up the HIS-started task to RACF, you must define a profile for it to the RACF generic resource class called STARTED by using the RDEFINE command.

      SETROPTS CLASSACT(STARTED)
      SETROPTS RACLIST(STARTED)
      SETROPTS GENERIC(STARTED)
      RDEFINE STARTED HIS.* STDATA(USER(HIS) TRUSTED(YES))
      SETROPTS RACLIST(STARTED) REFRESH
      SETROPTS GENERIC(STARTED) REFRESH

  2. Define a user ID for the HIS started task with an OMVS segment that specifies:

    * Any UID
    * A default HOME directory

    ADDUSER HIS OMVS(UID(12) HOME('/HIS'))
    SETROPTS NOCLASSACT(SECLABEL) NORACLIST(SECLABEL)
    ALTGROUP SYS1 OMVS(GID(0))

Resolution

SET LID
INSERT HIS STC NON-CNCL NAME(HIS STC ACID) UID(12) HOME(/HIS) GROUP(SYS1)
SET PROFILE(GROUP) DIV(OMVS)
INSERT SYS1 GID(0)

If the HIS started task name does not match the logonid HIS, link the started task name to the logonid by INSERTing a GSO STC record:

SET C(GSO)
INSERT STC.HIS GROUP(SYS1) LOGONID(HIS) STCID(started task name)
F ACF2,REFRESH(STC)