Assistance converting RACF RLIST commands to ACF2 equivalent commands
search cancel

Assistance converting RACF RLIST commands to ACF2 equivalent commands

book

Article ID: 239920

calendar_today

Updated On:

Products

ACF2 - z/OS

Issue/Introduction

Need to translate the following RACF RLIST commands to ACF2 commands:

RLIST APPL FEKAPPL ALL

RLIST PTKTDATA FEKAPPL SSIGNON ALL

RLIST PTKTDATA IRRPTAUTH.FEKAPPL.* ALL

RLIST PROGRAM **

RLIST FACILITY BPX.SERVER ALL

RLIST FACILITY BPX.POE ALL

SETROPTS LIST

Environment

Release : 16.0

Component : ACF2 for z/OS

Resolution

The RACF RLIST command is used to display information on resources belonging to classes specified in the class descriptor table. The format of the RLIST command is RLIST class-name ..... where class-name is the resource class. ACF2 uses CLASMAP records to map resource classes to three character TYPE codes for ACF2 resource rules. ACF2 has an internal default CLASMAP records for all of the RLIST commands provided, mapping the resource classs to a unique three character TYPE codes except for the resource CLASS APPL which maps APPL to a common TYPE code of SAF. * Most sites will create an site defined GSO CLASMAP record to map resource class APPL to a more unique TYPE code such as APL or APP. So for the following ACF2 equivalent commands we recommend doing a TSO, ACF, SHOW CLASMAP record to verify the TYPE code that each class-name(resource name) specified in the RACF RLIST corresponds to.

Here are the resource RLIST class-names and the corresponding ACF2 internal default TYPE codes.

class-name  ACF2 TYPE Code
APPL            SAF
PTKTDATA        PTK
PROGRAM         PGM
FACILITY        FAC

The following are the ACF2 equivalent commands for the RACF RLIST commands.

ACF
*
* RLIST APPL FEKAPPL ALL
* See * above for details on resource class APPL 
SET RESOURCE(SAF)
LIST LIKE(FEKAPPL-)
*
* RLIST PTKTDATA FEKAPPL SSIGNON ALL
SET PROFILE(PTKTDATA) DIVISION(SSIGNON)
LIST LIKE(FEKAPPL-)
*
* RLIST PTKTDATA IRRPTAUTH.FEKAPPL.* ALL
SET RESOURCE(PTK)
LIST LIKE(IRRPTAUTH-)
*
* RLIST PROGRAM **
SET RESOURCE(PGM)
LIST LIKE(-)
*
* RLIST FACILITY BPX.SERVER ALL
SET RESOURCE(FAC)
LIST LIKE(BPX-)
*
* RLIST FACILITY BPX.POE ALL
SET RESOURCE(FAC)
LIST LIKE(BPX-)

* SETROPTS LIST
* * No ACF2 equivalent * *