EGO_CHANGE_TYPE_TEAM
EGO_CHANGE_TYPE_TEAM table stores the role/user guid's for each Change Order Type who has create action privilege
Details
-
Schema: FUSION
-
Object owner: EGO
-
Object type: TABLE
-
Tablespace: Default
Primary Key
| Name | Columns |
|---|---|
|
EGO_CHANGE_TYPE_TEAM_PK |
CHANGE_TYPE_TEAM_ID |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| CHANGE_TYPE_TEAM_ID | NUMBER | 18 | Yes | Primary Key for the table ego_change_type_team | |
| OBJECT_VERSION_NUMBER | NUMBER | 9 | Yes | Used to implement optimistic locking. This number is incremented every time that the row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row since it was queried. | |
| CHANGE_TYPE_ID | NUMBER | 18 | Foreign key to change_type_id of ego_change_types_b table | ||
| PRINCIPAL_TYPE | VARCHAR2 | 30 | Yes | Stores the principal type for the action. Possible values are EGO_ROLE / EGO_PERSON | |
| PRINCIPAL_GUID | VARCHAR2 | 64 | Stores the principal guid of the principal type. This is either Role GUID from per_roles_dn table or Person GUID from per_users table | ||
| ROLE_NAME | VARCHAR2 | 100 | Stores the role_name from per_roles_dn of the principal guid for the action record | ||
| CREATE_PERMISSION | VARCHAR2 | 1 | Stores whether the role/user can create Change Orders of this change type. Possible values are Y and N | ||
| CREATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who created the row. | |
| CREATION_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the creation of the row. | ||
| LAST_UPDATE_DATE | TIMESTAMP | Yes | Who column: indicates the date and time of the last update of the row. | ||
| LAST_UPDATED_BY | VARCHAR2 | 64 | Yes | Who column: indicates the user who last updated the row. | |
| LAST_UPDATE_LOGIN | VARCHAR2 | 32 | Who column: indicates the session login associated to the user who last updated the row. |
Foreign Keys
| Table | Foreign Table | Foreign Key Column |
|---|---|---|
| EGO_CHANGE_TYPE_TEAM | ego_change_types_b | CHANGE_TYPE_ID |
Indexes
| Index | Uniqueness | Tablespace | Columns |
|---|---|---|---|
| EGO_CHANGE_TYPE_TEAM_N1 | Non Unique | Default | ROLE_NAME |
| EGO_CHANGE_TYPE_TEAM_PK | Unique | Default | CHANGE_TYPE_TEAM_ID |
| EGO_CHANGE_TYPE_TEAM_U2 | Unique | Default | CHANGE_TYPE_ID, PRINCIPAL_GUID |