MOW_BATCH_ASGN_JOB_ITEMS
Batch Assignment Job Item Table. This tabel contains the information of individual job items. Each Item contains a work object Id with up to 3 primary keys.
Details
-
Schema: FUSION
-
Object owner: MOW
-
Object type: TABLE
-
Tablespace: Default
Primary Key
| Name | Columns |
|---|---|
|
MOW_BATCH_ASGN_JOB_ITEMS_PK |
JOB_ID, JOB_ITEM_ID |
Columns
| Name | Datatype | Length | Precision | Not-null | Comments |
|---|---|---|---|---|---|
| JOB_ID | NUMBER | 18 | Yes | BATCH ID. All job items created from one parent batch assignment job have the same batch 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. | |
| JOB_ITEM_ID | NUMBER | 18 | Yes | Job Item ID, which is an index number within the job items with the same job ID. | |
| JOB_ITEM_GROUP_ID | NUMBER | 18 | Yes | Contains a rolling sequence number such that items in the same job item group will have the same value in this column. | |
| ESS_REQUEST_ID | NUMBER | 18 | Yes | The request ID of the ESS job. | |
| WORK_OBJ_PRIMARY_KEY1 | VARCHAR2 | 64 | Yes | Contains the job item's Primary Key 1 of the Work Object | |
| WORK_OBJ_PRIMARY_KEY2 | VARCHAR2 | 64 | Contains the job item's Primary Key 2 of the Work Object, if it is available | ||
| WORK_OBJ_PRIMARY_KEY3 | VARCHAR2 | 64 | Contains the job item's Primary Key 3 of the Work Object, if it is available | ||
| WORK_OBJ_IDENTIFIER_ATTR | VARCHAR2 | 300 | Contains the job item's unique identifier attribute value of the Work Object, if it is available | ||
| JOB_ITEM_STATUS | NUMBER | 1 | Yes | Possible values are 0, 1, 2, -1 | |
| ERROR_MESSAGE | CLOB | Contains the error stack trace and error message, whenever an object (job item) fails assignment. | |||
| 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. |
Foreign Keys
| Table | Foreign Table | Foreign Key Column |
|---|---|---|
| MOW_BATCH_ASGN_JOB_ITEMS | mow_batch_asgn_jobs | JOB_ID |
Indexes
| Index | Uniqueness | Tablespace | Columns |
|---|---|---|---|
| MOW_BATCH_ASGN_JOB_ITEMS_PK | Unique | Default | JOB_ID, JOB_ITEM_ID |
| MOW_BATCH_ASGN_JOB_ITEMS_U1 | Unique | Default | ESS_REQUEST_ID, WORK_OBJ_PRIMARY_KEY1, WORK_OBJ_PRIMARY_KEY2, WORK_OBJ_PRIMARY_KEY3 |