FOS_SOURCE_EVENT_SKIP_TASKS
This table stores the tasks that are to be skipped for an event. This is used for the inflight transactions processing after upgrade.
Details
-
Schema: FUSION
-
Object owner: FOS
-
Object type: TABLE
-
Tablespace: Default
Primary Key
| Name | Columns |
|---|---|
|
FOS_SOURCE_EVENT_SKIP_TAS_PK |
SKIP_TASK_ID |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| SKIP_TASK_ID | NUMBER | 18 | Yes | This is the primary key and its value is an application generated unique id. | |
| 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. | |
| EVENT_DATA_ID | VARCHAR2 | 100 | Yes | Event identifier for which there are tasks that needs to be skipped. This is a Foreign key to the fos_source_txn_events table. | |
| EVENT_TYPE | VARCHAR2 | 100 | Yes | Represents the type of the event (E.g.: Receiving, ASN) | |
| EVENT_SYSTEM_CODE | VARCHAR2 | 100 | Yes | The sytem code of the system from which the event is received. | |
| AGREEMENT_FTR_ID | NUMBER | 18 | Yes | Foreign key to fos_agreement_Ftr_task_f table. Indicates the ftr_id that has tasks to be skipped | |
| TASK_TYPE | VARCHAR2 | 100 | Yes | Identifies the task type that needs to be skipped. Task types are defined in the FOS_TASK_TYPE_B table. | |
| TASK_DOCUMENT_NUMBER | VARCHAR2 | 100 | Indicates the number of the target document that was created for the task that needs to be skipped. | ||
| TASK_DOCUMENT_LINE_NUMBER | VARCHAR2 | 100 | Indicates the line number of the target document that was created for the task that needs to be skipped. | ||
| 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 |
|---|---|---|---|
| FOS_EVENT_SKIP_TASKS_N1 | Non Unique | Default | EVENT_DATA_ID, EVENT_TYPE, EVENT_SYSTEM_CODE, AGREEMENT_FTR_ID, TASK_TYPE |
| FOS_EVENT_SKIP_TASKS_U1 | Unique | Default | SKIP_TASK_ID |