OKC_DEL_STATUS_HISTORY

Stores the history of changes to status of a deliverable. A new row is created in this table every time the status of a deliverable is changed.

Details

  • Schema: FUSION

  • Object owner: OKC

  • Object type: TABLE

  • Tablespace: FUSION_TS_TX_DATA

Primary Key

Name Columns

OKC_DEL_STATUS_HISTORY_PK

DELIVERABLE_ID, DELIVERABLE_STATUS, STATUS_CHANGE_DATE

Columns

Name Datatype Length Precision Not-null Comments
DELIVERABLE_ID NUMBER 18 Yes Unique Identifier for a Deliverable.
STATUS_CHANGED_BY_UID NUMBER 18 Identifer for the user that changed the Deliverable status. Added in RUP1 release to support Multi-Tenancy.
DELIVERABLE_STATUS VARCHAR2 30 Yes Status of the Deliverable. Refers to LOOKUP_CODE in FND_LOOKUPS where LOOKUP_TYPE =`OKC_DELIVERABLE_STATUS`.
STATUS_CHANGED_BY VARCHAR2 64 Identifer for the user that changed the Deliverable status.
STATUS_CHANGE_DATE TIMESTAMP Yes Date on which status of the deliverables was changed.
STATUS_CHANGE_NOTES VARCHAR2 2000 Notes entered by user about the status change on the Deliverable.
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.
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.

Foreign Keys

Table Foreign Table Foreign Key Column
OKC_DEL_STATUS_HISTORY okc_deliverables DELIVERABLE_ID

Indexes

Index Uniqueness Tablespace Columns
OKC_DEL_STATUS_HISTORY_U1 Unique Default DELIVERABLE_ID, DELIVERABLE_STATUS, STATUS_CHANGE_DATE