Previous Topic: DEPARTMENT Keyword—Department ACID AssignmentNext Topic: DESCRIPT Keyword—List Description


Examples: DEPARTMENT keyword

This example (entered by a DCA) creates a new TSO user for the TECH Department:

TSS CREATE(TECH10) NAME('TECH USER')
                   FACILITY(TSO)
                   PASSWORD(XXXX,15,EXP)
                   TYPE(USER)
                   DEPARTMENT(TECHDEP)

When TECH10 signs on using his password, he is automatically prompted for a new password which expires every 15 days.

This example is the same entry from an administrator other than the DCA:

TSS CREATE(TECH10) NAME('TECH USER')
                   FACILITY(TSO)
                   PASSWORD(XXXX,15,EXP)
                   DEPARTMENT(TECHDEP)
                   TYPE(USER)

This example lists the names of all users in the TECH Department:

TSS LIST(ACIDS) DATA(NAMES)
                DEPARTMENT(TECHDEP)