ZCA_MASS_UPD_REQ_ATTRS

The ZCA_MASS_UPD_REQ_ATTRS stores mass update request attribute details per object. The ZCA_MASS_UPD_REQ_ATTRS contains information about the attribute name, attribute type, old and new value for each object. This information is used by the Mass Update process to identify the attributes to be updated for each object.

Details

  • Schema: FUSION

  • Object owner: ZCA

  • Object type: TABLE

  • Tablespace: APPS_TS_TX_DATA

Primary Key

Name Columns

ZCA_MASS_UPD_REQ_ATTRS_PK

REQUEST_ATTR_ID

Columns

Name Datatype Length Precision Not-null Comments
REQUEST_ATTR_ID NUMBER 18 Yes Unique identifier for the request attributes. Primary key of this table.
MASS_UPD_REQUEST_ID NUMBER 18 Yes Foreign key to MASS_UPD_REQUEST_ID in ZCA_MASS_UPD_REQUEST
REQUEST_DETAIL_ID NUMBER 18 Yes Foreign key to REQUEST_DETAIL_ID in ZCA_MASS_UPD_REQ_DETAILS
ATTRIBUTE_NAME VARCHAR2 30 Name of attribute
ATTRIBUTE_TYPE VARCHAR2 30 Type of attribute
OLD_VALUE VARCHAR2 2000 Old value of attribute
NEW_VALUE VARCHAR2 2000 New value of attribute
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.
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
ZCA_MASS_UPD_REQ_ATTRS zca_mass_upd_request MASS_UPD_REQUEST_ID
ZCA_MASS_UPD_REQ_ATTRS zca_mass_upd_req_details REQUEST_DETAIL_ID

Indexes

Index Uniqueness Tablespace Columns
ZCA_MASS_UPD_REQ_ATTRS_PK Unique Default REQUEST_ATTR_ID