Previous Topic: ACLST Keyword—Resource Access LevelNext Topic: ACTION Keyword—Assign Actions


Examples: ACLST keyword

This example adds a new resource called #PRODUCT to the RDT Record with READ and WRITE access levels:

TSS ADDTO(RDT) RESCLASS(#PRODUCT)
               ACLST(READ,WRITE)

This example uses the REPLACE function to add new access levels to a resource class already defined in the RDT Record:

TSS REPLACE(RDT) RESCLASS(#PRODUCT)
                 ACLST(READ,WRITE)

For unique access levels, which are more applicable to the resource, specify the hexadecimal values associated with each access level:

ACLST(ANSWER=0400,CALL=0200)

This example combines predefined values with the unique access levels:

ACLST(READ,ANSWER=0400)

This example uses the REPLACE command function to remove an access level list:

TSS REPLACE(RDT) RESCLASS(#PRODUCT)
                 ATTR(NOACCESS)