You can modify an existing resource class to change its attributes. For example, you can add default protection by assigning the DEFPROT attribute to the resource classes entry in the RDT.
To change the values of previously defined resource classes, enter the command:
TSS REPLACE(RDT) RESCLASS(resource‑class‑name)
ATTR(attribute‑list)
ACLST(access‑level‑list)
DEFACC(default‑access‑level)
Examples: change RDT values
This example removes default protection from the resource class #PRODUCT:
TSS REPLACE(RDT) RESCLASS(#PRODUCT)
ATTR(NODEFPROT)
This example adds #PRODUCT to the RDT Record and gives it default protection:
TSS ADDTO(RDT) RESCLASS(#PRODUCT)
RESCODE(10)
ATTR(DEFPROT)
This example removes an existing READ access and replaces it with UPDATE access:
TSS REPLACE(RDT) RESCLASS(#PRODUCT)
ACLST(UPDATE)
This example keeps the READ access level and adds the UPDATE level:
TSS REPLACE(RDT) RESCLASS(#PRODUCT)
ACLST(READ,UPDATE)
This example removes an access level entirely from the access‑level‑list:
TSS REPLACE(RDT) RESCLASS(#PRODUCT)
ACLST()
This example removes the existing READ access and replaces it with NONE.
TSS REPLACE(RDT) RESCLASS(#PRODUCT)
DEFACC(NONE)
|
Copyright © 2014 CA Technologies.
All rights reserved.
|
|