TSS equivalent for RACF command:
RDEFINE PROGRAM ** ACC(READ) ADDMEM (‘SYS3.SAS94M4.LIBRARY’ // NOPADCHK)
Release : 16.0
Component : CA Top Secret for z/OS
There isn't a TSS command equivalent for these RACF commands, however, FETCH
or READ access to the libraries is necessary in order to execute the program
in them. So the acid will need FETCH or READ access to the libraries.
Since the RACF command effectively permits all Profiles/ACIDS, the
"ACID" in TSS in this case would be the ALL record.
The commands would be:
TSS ADD(dept) DSN(SYS3.) (if not already done. If preferred, can
own each SYS3.xxxx dataset in the ADDMEM command individually instead
of using the SYS1. prefix.)
TSS PER(ALL) DSN(SYS3.SAS94M4.LIBRARY) ACC(FETCH) (or ACC(READ) if you prefer)
where 'SYS1.xxxx' is each dataset in the ADDMEM( .. ) section
of the RACF command you provided.