Previous Topic: Review User InformationNext Topic: Model ACIDs


Zone, Division, and Department ACIDs

Use the TYPE parameter to create organizational ACIDs. Password is invalid with organizational ACIDs.

To create a zone, division, or zone ACID, enter the command:

TSS CREATE(acid) TYPE(DEPARTMENT|DIVISION|ZONE)
                 NAME(‘name’)
                 [ZONE(zonename)|[DIVISION(divisionname)] 
TYPE

Identifies whether you are creating a department, division, or zone ACID.

NAME

The name must be surrounded by single quotes if embedded with blanks.

Size: Up to 32 characters.

Valid values: Letters, numbers, and special characters

ZONE

Specifies the zone a division ACID belongs to.

DIVISION

Specifies the division a department ACID belongs to.

Examples: create a organizational ACID

This example creates a zone ACID called Parts Zone:

TSS CREATE(PARTZON) TYPE(ZONE)
                    NAME(‘PARTS ZONE’)                   

This example creates the Accounting Division in the Parts Zone:

TSS CREATE(ACCTDIV) TYPE(DIVISION)
                    NAME(‘ACCT DIV’)
                    ZONE(PARTZON)

This example creates the Personnel Applications Department linked to the Accounting Division:

TSS CREATE(ACCTDEPT) TYPE(DEPARTMENT)
                     NAME(‘PERSONNEL APPL’)
                     DIVISION(ACCT01)