Previous Topic: MASTFAC (z/VM) Keyword—Associate Virtual Machine to a FacilityNext Topic: MASKREC Keyword—Overlay FCT Values


MASKREC Keyword—MASK Record Name

Valid on z/OS, z/VSE, and z/VM.

Use the MASKREC keyword to:

The administrator can:

If ACCESS is not specified, CA Top Secret defaults to READ access.

When used with ADDTO, this keyword has the following format:

TSS ADDTO(SDT) MASKREC(maskname)
               MASKDATA(fielddefinition)
mask‑name

Specifies a user‑defined record ID that must be unique for each MASK record that can contain letters, numbers, and special characters.

Range: 1 to 8

When used with PERMIT, this keyword has the following format:

TSS PERMIT(acid) FCT(oper)
                 ACCESS(accesslevel)
                 MASKREC(mask‑name)
                 SELECT(selin,selout)
selin

Specifies the input select record.

selout

Specifies the output select record.

Note: It is not necessary to have both an input and output record for a SELECT statement.

Capacity of list

One MASKREC and SELECT statement per TSS command

This keyword is used with:

Example: MASKREC keyword

This example creates a MASK record called CRYPT1 in the SDT:

TSS ADDTO(SDT) MASKREC(CRYPT1)
               MASKDATA(ADD,CHAR,50,20,***************)

This example permits a user ALL access to the FCT file called PAY with the MASK record CRYPT1 and selects all departments 100 and above from the input record, and all the employees named Mike from the output record:

TSS PERMIT(USR01) FCT(PAY) 
                  ACCESS(ALL)
                  MASKREC(CRYPT1)
                  SELECT('IF DEPT GE "100" AND NAME EQ "MIKE" ')

This example revoke access:

TSS REVOKE(USR01) FCT(PAY)