Search Results wms_dispatched_tasks_history
Overview
WMS_DISPATCHED_TASKS_HISTORY is the Oracle Warehouse Management (WMS) history table that archives completed material handling tasks dispatched within the warehouse. It is the historical counterpart to WMS_DISPATCHED_TASKS, which holds currently active or open work for warehouse execution. When a dispatched task reaches completion, the corresponding record is moved or copied into WMS_DISPATCHED_TASKS_HISTORY, providing an immutable audit trail of task execution across the facility.
Because the table captures the full lifecycle of a task — dispatch, load, drop-off, and transaction posting — it functions as a system of record for warehouse labor performance, equipment utilization, and material movement reporting. It resides in the WMS schema and is valid in both Oracle EBS 12.1.1 and 12.2.2.
From a Data Vault modeling perspective, the mined metadata suggests classifying this table as a link entity, since its foreign key structure ties together organizations, people, equipment, inventory, and inventory transactions into a single relationship record. Analysts building a warehouse-layer model may treat TASK_ID as the driving business key.
Key Information Stored
The documented physical schema contains 68 columns. The most operationally significant are:
- TASK_ID — surrogate primary key (WMS_DISPATCHED_TASKS_HIST_PK) and the documented unique-key candidate via index WMS_DISPATCHED_TASKS_HISTOR_U1.
- ORGANIZATION_ID — the warehouse/inventory organization in which the task executed (FK to MTL_PARAMETERS).
- TRANSACTION_ID — links the completed task to the posted inventory transaction (FK to MTL_MATERIAL_TRANSACTIONS).
- USER_TASK_TYPE and TASK_TYPE — classify the work performed (e.g., putaway, picking, replenishment, move).
- STATUS — the recorded completion state of the task.
- DISPATCHED_TIME / LOADED_TIME / DROP_OFF_TIME — timestamps enabling cycle-time and productivity analysis.
- PERSON_ID — the operator who performed the task (FK to PER_ALL_PEOPLE_F, joined with EFFECTIVE_START_DATE and EFFECTIVE_END_DATE).
- EQUIPMENT_ID / EQUIPMENT_INSTANCE — the equipment used (FK to MTL_SERIAL_NUMBERS).
- INVENTORY_ITEM_ID, REVISION, TRANSACTION_QUANTITY, TRANSACTION_UOM_CODE — the material and quantity handled.
- SOURCE_SUBINVENTORY_CODE / SOURCE_LOCATOR_ID and DEST_SUBINVENTORY_CODE / DEST_LOCATOR_ID — the origin and destination of movement.
- LPN_ID / CONTENT_LPN_ID / TRANSFER_LPN_ID — license plate identifiers central to LPN-driven warehousing.
- OPERATION_PLAN_ID — FK to WMS_OP_PLANS_B; TRANSACTION_SOURCE_TYPE_ID — FK to MTL_TXN_SOURCE_TYPES.
- PERSON_RESOURCE_ID / MACHINE_RESOURCE_ID — FKs to BOM_RESOURCES for labor and machine cost attribution.
Common Use Cases and Queries
Typical applications include warehouse operator productivity reporting, equipment utilization analysis, task completion auditing, and reconciliation between task execution and posted inventory transactions.
- Task cycle-time analysis: compute elapsed time from DISPATCHED_TIME to DROP_OFF_TIME grouped by USER_TASK_TYPE and PERSON_ID.
- Productivity reporting: count completed tasks per operator per shift, joining PERSON_ID to PER_ALL_PEOPLE_F for names.
- Transaction reconciliation: join TRANSACTION_ID to MTL_MATERIAL_TRANSACTIONS to confirm every completed task produced a posted inventory transaction.
- Sample SQL:
SELECT t.task_id, t.organization_id, t.person_id, t.user_task_type, t.transaction_quantity FROM wms.wms_dispatched_tasks_history t WHERE t.organization_id = :org_id AND t.drop_off_time BETWEEN :start_date AND :end_date;
Related Objects
- WMS_DISPATCHED_TASKS — the active-task parent from which this history is derived.
- MTL_MATERIAL_TRANSACTIONS — joined via TRANSACTION_ID for transaction posting details.
- MTL_PARAMETERS — joined via ORGANIZATION_ID for warehouse definitions.
- PER_ALL_PEOPLE_F — joined via PERSON_ID, EFFECTIVE_START_DATE, EFFECTIVE_END_DATE for operator identity.
- BOM_RESOURCES — joined via PERSON_RESOURCE_ID and MACHINE_RESOURCE_ID for resource costing.
- MTL_SERIAL_NUMBERS — joined via EQUIPMENT_INSTANCE and EQUIPMENT_ID.
- WMS_OP_PLANS_B — joined via OPERATION_PLAN_ID.
- MTL_TXN_SOURCE_TYPES — joined via TRANSACTION_SOURCE_TYPE_ID.
-
Table: WMS_DISPATCHED_TASKS_HISTORY
12.1.1
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_DISPATCHED_TASKS_HISTORY, object_name:WMS_DISPATCHED_TASKS_HISTORY, status:VALID, product: WMS - Warehouse Management , description: History Table for WMS_DISPATCHED_TASKS. Stores information about all tasks that have been completed , implementation_dba_data: WMS.WMS_DISPATCHED_TASKS_HISTORY ,
-
Table: WMS_DISPATCHED_TASKS_HISTORY
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_DISPATCHED_TASKS_HISTORY, object_name:WMS_DISPATCHED_TASKS_HISTORY, status:VALID, product: WMS - Warehouse Management , description: History Table for WMS_DISPATCHED_TASKS. Stores information about all tasks that have been completed , implementation_dba_data: WMS.WMS_DISPATCHED_TASKS_HISTORY ,
-
APPS.INV_PARENT_MMTT_PVT SQL Statements
12.1.1
-
APPS.INV_PARENT_MMTT_PVT SQL Statements
12.2.2
-
APPS.WMS_ARCHIVE_PVT SQL Statements
12.1.1
-
APPS.WMS_ARCHIVE_PVT SQL Statements
12.2.2
-
SYNONYM: APPS.WMS_DISPATCHED_TASKS_HISTORY
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WMS_DISPATCHED_TASKS_HISTORY, status:VALID,
-
VIEW: WMS.WMS_DISPATCHED_TASKS_HISTORY#
12.2.2
owner:WMS, object_type:VIEW, object_name:WMS_DISPATCHED_TASKS_HISTORY#, status:VALID,
-
VIEW: APPS.WMS_COMPLETED_TASKS_V
12.2.2
-
VIEW: APPS.WMS_COMPLETED_TASKS_V
12.1.1
-
SYNONYM: APPS.WMS_DISPATCHED_TASKS_HISTORY
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WMS_DISPATCHED_TASKS_HISTORY, status:VALID,
-
VIEW: APPS.WMS_COMPLETED_EXCEPTIONS_V
12.2.2
-
VIEW: APPS.WMS_COMPLETED_EXCEPTIONS_V
12.1.1
-
Table: BOM_RESOURCES
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_RESOURCES, object_name:BOM_RESOURCES, status:VALID, product: BOM - Bills of Material , description: Resources, overheads, material cost codes, and material overheads , implementation_dba_data: BOM.BOM_RESOURCES ,
-
View: WMS_COMPLETED_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_COMPLETED_TASKS_V, object_name:WMS_COMPLETED_TASKS_V, status:VALID, product: WMS - Warehouse Management , implementation_dba_data: APPS.WMS_COMPLETED_TASKS_V ,
-
Table: BOM_RESOURCES
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_RESOURCES, object_name:BOM_RESOURCES, status:VALID, product: BOM - Bills of Material , description: Resources, overheads, material cost codes, and material overheads , implementation_dba_data: BOM.BOM_RESOURCES ,
-
APPS.OPI_DBI_WMS_RTP_F_C SQL Statements
12.1.1
-
VIEW: APPS.WMS_WAVEPLAN_TASK_EXCEPTIONS_V
12.2.2
-
View: WMS_COMPLETED_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_COMPLETED_TASKS_V, object_name:WMS_COMPLETED_TASKS_V, status:VALID, product: WMS - Warehouse Management , implementation_dba_data: APPS.WMS_COMPLETED_TASKS_V ,
-
APPS.WMS_MDC_PVT SQL Statements
12.1.1
-
APPS.WMS_MDC_PVT SQL Statements
12.2.2
-
View: WMS_WAVEPLAN_TASK_EXCEPTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_WAVEPLAN_TASK_EXCEPTIONS_V, object_name:WMS_WAVEPLAN_TASK_EXCEPTIONS_V, status:VALID, product: WMS - Warehouse Management , description: WMS Wave Planning Task Exceptions View , implementation_dba_data: APPS.WMS_WAVEPLAN_TASK_EXCEPTIONS_V ,
-
PACKAGE BODY: APPS.WMS_INSERT_WDTH_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_INSERT_WDTH_PVT, status:VALID,
-
PACKAGE BODY: APPS.INV_PARENT_MMTT_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:INV_PARENT_MMTT_PVT, status:VALID,
-
PACKAGE BODY: APPS.WMS_ATF_DESTINATION_LPN
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_ATF_DESTINATION_LPN, status:VALID,
-
Table: PER_ALL_PEOPLE_F
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_ALL_PEOPLE_F, object_name:PER_ALL_PEOPLE_F, status:VALID, product: PER - Human Resources , description: DateTracked table holding personal information for employees, applicants and other people. , implementation_dba_data: HR.PER_ALL_PEOPLE_F ,
-
PACKAGE BODY: APPS.WMS_ARCHIVE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_ARCHIVE_PVT, status:VALID,
-
VIEW: WMS.WMS_DISPATCHED_TASKS_HISTORY#
12.2.2
-
PACKAGE BODY: APPS.INV_PARENT_MMTT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:INV_PARENT_MMTT_PVT, status:VALID,
-
PACKAGE BODY: APPS.WMS_OP_RUNTIME_PVT_APIS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_OP_RUNTIME_PVT_APIS, status:VALID,
-
PACKAGE BODY: APPS.WMS_MDC_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_MDC_PVT, status:VALID,
-
PACKAGE BODY: APPS.WMS_ARCHIVE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_ARCHIVE_PVT, status:VALID,
-
PACKAGE BODY: APPS.WMS_INSERT_WDTH_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_INSERT_WDTH_PVT, status:VALID,
-
Table: PER_ALL_PEOPLE_F
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_ALL_PEOPLE_F, object_name:PER_ALL_PEOPLE_F, status:VALID, product: PER - Human Resources , description: DateTracked table holding personal information for employees, applicants and other people. , implementation_dba_data: HR.PER_ALL_PEOPLE_F ,
-
PACKAGE BODY: APPS.WMS_ATF_DESTINATION_LPN
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_ATF_DESTINATION_LPN, status:VALID,
-
PACKAGE BODY: APPS.OPI_DBI_WMS_UTILITY_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OPI_DBI_WMS_UTILITY_PKG, status:VALID,
-
PACKAGE BODY: APPS.WMS_MDC_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_MDC_PVT, status:VALID,
-
PACKAGE BODY: APPS.WMS_ATF_DEST_LOC
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_ATF_DEST_LOC, status:VALID,
-
PACKAGE BODY: APPS.WMS_ATF_DEST_LOC
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_ATF_DEST_LOC, status:VALID,
-
View: WMS_COMPLETED_EXCEPTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_COMPLETED_EXCEPTIONS_V, object_name:WMS_COMPLETED_EXCEPTIONS_V, status:VALID, product: WMS - Warehouse Management , implementation_dba_data: APPS.WMS_COMPLETED_EXCEPTIONS_V ,
-
PACKAGE BODY: APPS.WMS_OP_DEST_SYS_APIS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_OP_DEST_SYS_APIS, status:VALID,
-
PACKAGE BODY: APPS.WMS_OP_RUNTIME_PVT_APIS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_OP_RUNTIME_PVT_APIS, status:VALID,
-
PACKAGE BODY: APPS.OPI_DBI_WMS_WAA_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OPI_DBI_WMS_WAA_PKG, status:VALID,
-
View: WMS_COMPLETED_EXCEPTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_COMPLETED_EXCEPTIONS_V, object_name:WMS_COMPLETED_EXCEPTIONS_V, status:VALID, product: WMS - Warehouse Management , implementation_dba_data: APPS.WMS_COMPLETED_EXCEPTIONS_V ,
-
APPS.WMS_INSERT_WDTH_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.OPI_DBI_WMS_RTP_F_C
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OPI_DBI_WMS_RTP_F_C, status:VALID,
-
PACKAGE BODY: APPS.WMS_OP_DEST_SYS_APIS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_OP_DEST_SYS_APIS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1