WIE_WO_EXEC_RUN_OPERATIONS

This table is used to track execution-related quantities for each operation within an execution run. Since execution runs can be split and executed separately and each operation within a run can also be executed partially. This table maintains these quantities individually for each execution run and operation to ensure accurate tracking.

Details

  • Schema: FUSION

  • Object owner: WIE

  • Object type: TABLE

  • Tablespace: DEFAULT

Primary Key

Name Columns

WIE_WO_EXEC_RUN_OPERATIONS_PK

WO_EXEC_RUN_OPERATION_ID

Columns

Name Datatype Length Precision Not-null Comments
WO_EXEC_RUN_OPERATION_ID NUMBER 18 Yes The unique identifier of execution run operation record. 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.
WO_EXECUTION_RUN_ID NUMBER 18 Yes This is the internal identifier of an execution run. Foreign key to WIE_WO_EXECUTION_RUNS.
WO_OPERATION_ID NUMBER 18 Yes This is the internal identifier of an operation. Foreign key to WIE_WO_OPERATIONS_B.
READY_QUANTITY NUMBER The quantity that is sitting in the inbound queue of the operation for this execution run.
COMPLETED_QUANTITY NUMBER The quantity that is completed in this operation as part of this execution run.
SCRAPPED_QUANTITY NUMBER The quantity that is scrapped in this operation as part of this execution run.
REJECTED_QUANTITY NUMBER The quantity that is rejected in this operation as part of this execution run.
VARIANCE_QUANTITY NUMBER Batch variance quantity reported at the current operation as part of this execution run.
OP_COMPL_FLAG VARCHAR2 1 Indicates whether the current operation has been marked complete as part of this execution run. Valid values are: N/NULL - operation is not marked complete, Y - operation is marked complete and no more forward transactions are allowed
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.
REQUEST_ID NUMBER 18 Enterprise Service Scheduler: indicates the request ID of the job that created or last updated the row.
JOB_DEFINITION_NAME VARCHAR2 100 Enterprise Service Scheduler: indicates the name of the job that created or last updated the row.
JOB_DEFINITION_PACKAGE VARCHAR2 900 Enterprise Service Scheduler: indicates the package name of the job that created or last updated the row.

Indexes

Index Uniqueness Tablespace Columns
WIE_WO_EXEC_RUN_OPERATIONS_N01 Non Unique DEFAULT WO_OPERATION_ID
WIE_WO_EXEC_RUN_OPERATIONS_U01 Unique DEFAULT WO_EXEC_RUN_OPERATION_ID
WIE_WO_EXEC_RUN_OPERATIONS_U02 Unique DEFAULT WO_EXECUTION_RUN_ID, WO_OPERATION_ID