DOO_ACTION_REQUEST_ATTRIBUTES

This table is used for the Sync/Async pattern for AdfBc-SOA interaction.

Details

  • Schema: FUSION

  • Object owner: DOO

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

DOO_ACTION_REQUEST_ATTR_PK

ACTION_REQUEST_ATTRIBUTE_ID

Columns

Name Datatype Length Precision Not-null Comments
ACTION_REQUEST_ATTRIBUTE_ID NUMBER 18 Yes Unique identifier of the attribute changed as part of the workbench user action request.
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.
ACTION_REQUEST_ID NUMBER 18 Reference to the unique identifier for the action request
ATTRIBUTE_NAME VARCHAR2 30 Yes The name of the changed attribute
ATTRIBUTE_DATA_TYPE VARCHAR2 30 The data type of the changed attribute
ATTRIBUTE_NUM_VALUE NUMBER The value of the changed attribute if the data type is number
ATTRIBUTE_STRING_VALUE VARCHAR2 1000 The value of the changed attribute if the data type is VARCHAR2.
ATTRIBUTE_DATE_VALUE DATE The value of the changed attribute if the data type is date
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.
ATTRIBUTE_CLOB_VALUE CLOB The value of the attribute if the data type is CLOB.

Foreign Keys

Table Foreign Table Foreign Key Column
DOO_ACTION_REQUEST_ATTRIBUTES doo_action_requests ACTION_REQUEST_ID

Indexes

Index Uniqueness Tablespace Columns
DOO_ACTION_REQUEST_ATTR_FK1 Non Unique Default ACTION_REQUEST_ID
DOO_ACTION_REQUEST_ATTR_N1 Non Unique Default ATTRIBUTE_NAME, ATTRIBUTE_NUM_VALUE
DOO_ACTION_REQUEST_ATTR_N2 Non Unique Default ATTRIBUTE_NAME, ATTRIBUTE_STRING_VALUE
DOO_ACTION_REQUEST_ATTR_N3 Non Unique Default ATTRIBUTE_NAME, ATTRIBUTE_DATE_VALUE
DOO_ACTION_REQUEST_ATTR_PK Unique Default ACTION_REQUEST_ATTRIBUTE_ID