OSS_EVENT_TRANSACTION_DETAILS

When the corresponding profile option is enabled to log the change events on tables like subscription, products and associations, and based on the configurations done on OSS_EVENT_CONFIG, whenever an action is performed, the details are logged in this table.

Details

  • Schema: FUSION

  • Object owner: OSS

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

OSS_EVENT_TXN_DETAILS_PK

EVENT_TRANSACTION_DETAIL_ID

Columns

Name Datatype Length Precision Not-null Comments
EVENT_TRANSACTION_DETAIL_ID NUMBER 18 Yes Primary key, unique identifier of the event transaction details.
SUBSCRIPTION_ID NUMBER 18 Yes Subscription on which operation was performed.
SUBSCRIPTION_PRODUCT_ID NUMBER 18 Subscription Product on which operation was performed.
PRODUCT_ASSOCIATION_ID NUMBER 18 Subscription Product Association on which operation was performed.
TRANSACTION_ID NUMBER 18 To identify the Action against which the log was made for, this is referred from table OSS_EVENT_TRANSACTIONS.
OPERATION VARCHAR2 30 To identify the type of operation that is performed. Example: UPDATE, INSERT, DELETE.
CHANGED_ATTRIBUTE VARCHAR2 30 To identify the attribute that is been changed during this transaction.
OLD_VALUE VARCHAR2 1500 The old value of the attribute that was there before for the CHANGED_ATTRIBUTE column.
NEW_VALUE VARCHAR2 1500 The new value of the CHANGED_ATTRIBUTE that is modified to.
SOURCE_ACTION_CODE VARCHAR2 30 To identify the life cycle operation in which this record was modified.
SOURCE_SUBSCRIPTION_ID NUMBER 18 Subscription id of the source for flows like Amend, Resume, Renew.
SOURCE_PRODUCT_ID NUMBER 18 Subscription product id of the source for flows like Amend, Resume, Renew.
SOURCE_ASSOCIATION_ID NUMBER 18 Subscription product association id of the source for flows like Amend, Resume, Renew.
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.

Indexes

Index Uniqueness Tablespace Columns
OSS_EVENT_TXN_DETAILS_PK1 Unique Default EVENT_TRANSACTION_DETAIL_ID