FND_NTF_EVENT

Entity for persisting business events received from all registered ApplicationModules.

Details

  • Schema: FUSION

  • Object owner: FND

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

FND_NTF_EVENT_PK

EVENT_ID

Columns

Name Datatype Length Precision Not-null Comments
EVENT_ID NUMBER 18 Yes Primary identifier of the entity.
EVENT_VERSION NUMBER 18 Yes 0 based version column for tracking subsequent change requests on top of the original event-id row.
APP_MODULE_ID NUMBER 18 Yes Foreign key referencing the fnd_ntf_application_module table.
CLOUD_EVENT_ID VARCHAR2 256 Yes Unique identifier of the business event as specified by the producer ApplicationModule.
CLOUD_EVENT_TYPE VARCHAR2 256 Yes Event Type of the business event as specified by the producer ApplicationModule.
CLOUD_EVENT_SOURCE VARCHAR2 256 Yes Event Source of the business event as specified by the producer ApplicationModule.
DATA_CONTENT_TYPE VARCHAR2 256 Mine-type of the payload of the business event.
CHANNEL_TYPE VARCHAR2 64 The name for the channel as registered in fnd_ntf_channel table.
PROCESSING_HINTS_JSON CLOB Yes JSON (versioned) configuration specifying the application layer tuning parameters chosen for fine grained control of how this business event is precoessed.
DATA CLOB Yes The actual payload to be delivered to the outbound channel(s).
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
FND_NTF_EVENT_U1 Unique Default EVENT_ID
FND_NTF_EVENT_U2 Unique Default APP_MODULE_ID, CLOUD_EVENT_SOURCE, CLOUD_EVENT_ID, EVENT_VERSION