EGO_CHANGE_OBJ_RELATIONSHIPS

Table used to store Engineering Change Order relationships.

Details

  • Schema: FUSION

  • Object owner: EGO

  • Object type: TABLE

  • Tablespace: FUSION_TS_TX_DATA

Primary Key

Name Columns

EGO_CHANGE_OBJ_RELATIONSH_PK

CHANGE_RELATIONSHIP_ID

Columns

Name Datatype Length Precision Not-null Comments
CHANGE_RELATIONSHIP_ID NUMBER 18 Yes Identifier uniquely determining the row of ego_change_obj_relationships table
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_ID NUMBER 18 Yes Identifier determining the source change id
RELATIONSHIP_CODE VARCHAR2 30 Yes Identifier determining the type of relationship between the change objects
OBJECT_TO_NAME VARCHAR2 30 Yes Name of the target object based on relationship_code. For example, EGO_CHANGE
OBJECT_TO_ID1 NUMBER 18 Yes Target object identifier of the relationship based on relationship_code. For example, target change_id if relationship_code is 'PROPAGATED TO'
OBJECT_TO_ID2 NUMBER 18 Other identifiers of the source object of the relationship based on relationship_code. For example, source organization_id if relationship_code is 'PROPAGATED TO'
OBJECT_TO_ID3 NUMBER 18 Other identifiers of the target object of the relationship based on relationship_code. For example, target organization_id if relationship_code is 'PROPAGATED TO'
OBJECT_TO_ID4 NUMBER 18 Used to refer any other identifiers from other tables
OBJECT_TO_ID5 NUMBER 18 Used to refer any other identifiers from other tables
CREATION_DATE TIMESTAMP Yes Who column: indicates the date and time of the creation of the row.
CREATED_BY VARCHAR2 64 Yes Who column: indicates the user who created 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_OBJ_RELATIONSHIPS ego_engineering_changes_b CHANGE_ID

Indexes

Index Uniqueness Tablespace Columns
EGO_CHANGE_OBJ_RELATION_N1 Non Unique FUSION_TS_TX_DATA CHANGE_ID, RELATIONSHIP_CODE
EGO_CHANGE_OBJ_RELATION_N2 Non Unique FUSION_TS_TX_DATA OBJECT_TO_NAME, OBJECT_TO_ID1, RELATIONSHIP_CODE
EGO_CHANGE_OBJ_RELATION_PK Unique CHANGE_RELATIONSHIP_ID