ACA_CS_HISTORY

This table is used to save history action related data.

Details

  • Schema: FUSION

  • Object owner: ACA

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

ACA_CS_HISTORY_PK

HISTORY_ID

Columns

Name Datatype Length Precision Not-null Comments
HISTORY_ID NUMBER 18 Yes This is the primary key of the table (not used for UI)
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.
OBJECT_REFERENCE_TYPE VARCHAR2 30 Yes This is the object reference types which support Audit History. They are a subset of the PLM Reference Types. In R9, it only contains Requirements Specifications. For future releases, will add Ideas, Concepts, Proposals, etc.
OBJECT_TYPE VARCHAR2 400 Yes This is the business object class/subclass type
OBJECT_ID NUMBER 18 Yes Business object ID (not used for UI)
OBJECT_NAME VARCHAR2 400 Yes This represents the name of the business object.
OBJECT_VERSION VARCHAR2 30 Business object Version if it supports version
ACTION VARCHAR2 30 Yes Action for which the history was logged. Such as Create, Update, Delete, etc.
CHILD_REFERENCE_TYPE VARCHAR2 30 This is the child reference types which support Audit History. They are a subset of the PLM Reference Types. In R9, it only contains Requirements Specifications. For future releases, will add Ideas, Concepts, Proposals, etc.
CHILD_TYPE VARCHAR2 400 The reference type of the child object if any
CHILD_ID NUMBER 18 This represents the ID of the child object.
CHILD_NAME VARCHAR2 400 This represents the name of the child.
ASSOCIATED_ENTITY VARCHAR2 80 The Entity/Table name for which the history was logged. Such as Requirements, Relationships, Depends On, Comments, Team
ATTRIBUTE_ID NUMBER 18 The attribute index of the Entity object for which the history was logged.
ATTRIBUTE_NAME VARCHAR2 80 Attribute Name of the Entity Object for which the history was logged. (not used for UI)
OLD_VALUE VARCHAR2 1000 The old value of the attribute being changed from
NEW_VALUE VARCHAR2 1000 The new value of the attribute being change to
DETAILS VARCHAR2 4000 The column contains the change details of the history.
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_UPDATED_BY VARCHAR2 64 Yes Who column: indicates the user who last updated the row.
LAST_UPDATE_DATE TIMESTAMP Yes Who column: indicates the date and time of the last update of the row.
LAST_UPDATE_LOGIN VARCHAR2 32 Who column: indicates the session login associated to the user who last updated the row.

Indexes

Index Uniqueness Tablespace Columns
ACA_CS_HISTORY_U1 Unique Default HISTORY_ID