Using z/OS individual Broadcast datasets, is there a way to not have to write individual rules for every TSO user?
search cancel

Using z/OS individual Broadcast datasets, is there a way to not have to write individual rules for every TSO user?

book

Article ID: 28510

calendar_today

Updated On:

Products

ACF2 ACF2 - DB2 Option ACF2 for zVM ACF2 - z/OS ACF2 - MISC PanApt PanAudit

Issue/Introduction

Description:

Broadcast dataset are set up as (userHLQ).BRODCAST. Is there any easy way to write rules to allow access so the SEND command will work if the user is not logged on?

Solution:

In the SYS1.PARMLIB member IKJTSOxx in use on your system, there are two parms of interest, MSGPROTECT and LOGNAME. LOGNAME decides the name of the broadcast dataset, and MSGPROTECT decides the order. With MSGPROTECT(OFF), the broadcast format is userid."logname". With MSGPROTECT(ON) the broadcast format is "logname".userid. So if you have:

LOGNAME(MAIL)
MSGPROTECT(OFF)

Then you will have userid.MAIL for the individual broadcast datasets. With:

LOGNAME(MAIL)
MSGPROTECT(ON)

Will give you MAIL.userid. This would be the method to ease the writing of the rules. Then you can write one rule record for all userids.

$KEY(MAIL)
- UID(*) W(A)

Environment

Release: ACF2..001AO-15-ACF2
Component:

Resolution

-