DOO_EXTENSION_EVENT_BINDINGS
Stores associations between events and extensions
Details
-
Schema: FUSION
-
Object owner: DOO
-
Object type: TABLE
-
Tablespace: Default
Primary Key
| Name | Columns |
|---|---|
|
DOO_EXT_EVENT_BINDINGS_PK |
EVENT_BINDING_ID |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| EVENT_BINDING_ID | NUMBER | 18 | Yes | Uniquer identifier of the event binding. | |
| EVENT_CODE | VARCHAR2 | 30 | Code of the event the extension is being associated with. | ||
| EXTENSION_ID | NUMBER | 18 | Yes | Foreign key to DOO_EXTENSIONS_B. | |
| EXTENSION_CLASS_NAME | VARCHAR2 | 80 | Name of the extension class. | ||
| SEQUENCE_NUMBER | NUMBER | 9 | Yes | Sequence number to control order of execution of extensions for a particular event. | |
| ENABLED_FLAG | VARCHAR2 | 1 | Yes | Flag indicating if the extension binding is enabled or not. | |
| USAGE_CODE | VARCHAR2 | 30 | Indicates whether the extension binding is specific to import flow, UI flow or both | ||
| 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. | ||
| 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. |
Foreign Keys
| Table | Foreign Table | Foreign Key Column |
|---|---|---|
| DOO_EXTENSION_EVENT_BINDINGS | doo_extensions_b | EXTENSION_ID |
Indexes
| Index | Uniqueness | Tablespace | Columns |
|---|---|---|---|
| DOO_EXT_EVENT_BINDINGS_N1 | Non Unique | Default | EVENT_CODE, SEQUENCE_NUMBER |
| DOO_EXT_EVENT_BINDINGS_PK | Unique | Default | EVENT_BINDING_ID |