How to list all Logonids that have TSO attribute.
Release : 16.0
ACF
SET TERSE
LIST IF(TSO)
LIST LIKE(ABC-) IF(TSO)
LIST UID(uid of lids with abc) IF(TSO)
END
The list you will receive is the first line of a
LIST logonid
It will not show that TSO is in the logon id record - but has been selected because it HAS TSO.
You can do the same with ACFRPTSL
//STEP2 EXEC PGM=ACFRPTSL,REGION=4096K
//SYSPRINT DD SYSOUT=*
//BACKUP DD DSN=SYS1.ACF2.BKLIDS,DISP=SHR
//BACKUPI DD DSN=SYS1.ACF2.BKINFO,DISP=SHR
//SYSIN DD *
INPUT(BKUP)
REPORT(SHORT)
IF(TSO)
MASK(D-)
DTCFIELD(NO)
SFLDS(TSO)
This will provide output like this...
CA ACF2 - ACFRPTSL - LOGONID SUPERLIST REP
DATE 08/04/23 (23.216) TIME 14.03
LOGONID NAME TSO
D000001 d user 1 YES
D000002 d user 2 YES
D000003 d user 3 YES
D000004 d user 4 YES