TSS equivalent for RACF command:
RDEFINE PROGRAM ** ACC(READ) ADDMEM (‘hlq.SAS94M4.LIBRARY’ // NOPADCHK)
Component : 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 Top Secret in this case is the ALL record.
The commands would be:
TSS ADD(dept) DSN(hlq.) (if not already done. If preferred, you can own each hlq.xxxx dataset in the ADDMEM command individually instead of using the hlq. prefix.)
TSS PER(ALL) DSN(hlq.SAS94M4.LIBRARY) ACC(FETCH) (or ACC(READ) if you prefer)
where 'hlq.xxxx' is each dataset in the ADDMEM( .. ) section of the RACF command you provided.