Previous Topic: DEFNODES Keyword—Default Remote NodesNext Topic: DEFTKTLF Keyword—Default Ticket Life


Examples: DEFNODES keyword

This example defines the default routing nodes of NYC, CHI and DET for the USER01 ACID:

TSS ADDTO(USER01) DEFNODES(NYC,CHI,DET)

If a command is issued against USER01 and:

This example completely removes the list:

TSS REMOVE(USER01) DEFNODES(NYC,CHI,DET)

This example defines a new user for the Accounting Department. The new user requires an initial DEFNODES list that includes New York, Chicago, and Detroit:

TSS CREATE(ACCT01) NAME('ACCT USER')
                   FACILITY(VM,TSO)
                   PASSWORD(xxxx)
                   TYPE(USER)
                   DEFNODES(NYC,CHI,DET)

The administrator has the option of using a Model ACID, which contains all the default access rights and restrictions—including DEFNODES—for all users in the Accounting Department. In this case, specify the USING keyword with the TSS CREATE.

This example adds DEFNODES Baltimore and Atlanta to the user:

TSS ADDTO(USER01) DEFNODES(BAL,ATL)

The list for USER01 now consists of NYC, CHI, DET, BAL, ATL.

This example removes Houston from the list:

TSS REMOVE(USER01) DEFNODES(HOU)

This example completely replaces the current list with a new list consisting of Houston and Boston:

TSS REPLACE(USER01) DEFNODES(HOU,BOS)