Search Results wms_dispatched_tasks_arch
Overview
WMS_DISPATCHED_TASKS_ARCH is the archive companion to WMS_DISPATCHED_TASKS in the Oracle Warehouse Management (WMS) module. It resides in the WMS schema and stores historical information about warehouse tasks that have been completed. In Oracle EBS 12.1.1 and 12.2.2, dispatched tasks represent discrete units of warehouse labor — put-aways, picks, replenishments, moves, and similar material handling activities — that have been assigned to a user or equipment resource and subsequently executed. As the active task table grows, completed records are migrated to this archive table, preserving the full operational history while keeping the transactional table performant.
From a dimensional modeling perspective, the heuristic Data Vault classification derived from the foreign key structure is link. This classification is a modeling suggestion: the table records relationships and events between warehouse resources (people, machines, equipment instances), organizational units, and inventory transactions, rather than serving as a pure hub of unique business entities or a satellite of descriptive attributes for a single parent.
Key Information Stored
The documented schema contains 65 columns. The most significant are:
- TASK_ID — Surrogate primary key (WMS_DISPATCHED_TASKS_ARCH_PK); the unique identifier for each archived task record.
- TRANSACTION_ID — Links the task to its underlying inventory transaction.
- ORGANIZATION_ID — Warehouse/inventory organization in which the task was performed. Foreign key to MTL_PARAMETERS.
- STATUS — Disposition of the task at completion (for example, completed, cancelled, or dropped).
- USER_TASK_TYPE and TASK_TYPE — Classify the nature of the work (pick, put-away, move, replenish).
- PERSON_ID — The operator who executed the task; joins to PER_ALL_PEOPLE_F using PERSON_ID combined with EFFECTIVE_START_DATE and EFFECTIVE_END_DATE.
- EQUIPMENT_ID and EQUIPMENT_INSTANCE — Physical equipment or a specific serialized instance used, the latter referencing MTL_SERIAL_NUMBERS.
- PERSON_RESOURCE_ID and MACHINE_RESOURCE_ID — Labor and machine resources from BOM_RESOURCES that were consumed.
- DISPATCHED_TIME, LOADED_TIME, and DROP_OFF_TIME — Timestamps marking the dispatch, load, and completion/drop-off moments, enabling cycle-time analysis.
- INVENTORY_ITEM_ID, REVISION, TRANSACTION_QUANTITY, and TRANSACTION_UOM_CODE — The material moved and its quantity/UOM.
- SOURCE_LOCATOR_ID, DEST_LOCATOR_ID, SOURCE_SUBINVENTORY_CODE, and DEST_SUBINVENTORY_CODE — Origin and destination context for the movement.
- LPN_ID and CONTENT_LPN_ID — License plate numbers identifying the container and its contents.
- OPERATION_PLAN_ID and OP_PLAN_INSTANCE_ID — The operation plan governing the task, the former referencing WMS_OP_PLANS_B.
Common Use Cases and Queries
The archive table supports historical labor reporting, warehouse productivity dashboards, and audit reconciliation of completed tasks. Typical queries join to MTL_PARAMETERS for the organization name and to PER_ALL_PEOPLE_F for the operator. For example, to compute average task cycle time by operator:
SELECT person_id,
COUNT(*) tasks,
AVG(drop_off_time - dispatched_time) avg_cycle
FROM wms.wms_dispatched_tasks_arch
WHERE organization_id = :org
AND dispatched_time >= :from_date
GROUP BY person_id;
Reconciliation queries compare archived tasks against inventory transaction history (TRANSACTION_ID) to confirm that every completed movement is reflected in MTL_MATERIAL_TRANSACTIONS. Volume trending by task type or equipment supports capacity planning.
Related Objects
- WMS_DISPATCHED_TASKS — The active source table from which archived rows originate; shares the same structure.
- MTL_PARAMETERS — Joined on ORGANIZATION_ID; supplies organization context.
- PER_ALL_PEOPLE_F — Joined on PERSON_ID plus the effective date range for operator names.
- BOM_RESOURCES — Referenced by PERSON_RESOURCE_ID and MACHINE_RESOURCE_ID.
- MTL_SERIAL_NUMBERS — Referenced by EQUIPMENT_INSTANCE / EQUIPMENT_ID.
- WMS_OP_PLANS_B — Referenced by OPERATION_PLAN_ID.
- MTL_TXN_SOURCE_TYPES — Referenced by TRANSACTION_SOURCE_TYPE_ID.
-
Table: WMS_DISPATCHED_TASKS_ARCH
12.1.1
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_DISPATCHED_TASKS_ARCH, object_name:WMS_DISPATCHED_TASKS_ARCH, status:VALID, product: WMS - Warehouse Management , description: Archive Table for WMS_DISPATCHED_TASKS. Stores information about all tasks that have been completed , implementation_dba_data: WMS.WMS_DISPATCHED_TASKS_ARCH ,
-
Table: WMS_DISPATCHED_TASKS_ARCH
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_DISPATCHED_TASKS_ARCH, object_name:WMS_DISPATCHED_TASKS_ARCH, status:VALID, product: WMS - Warehouse Management , description: Archive Table for WMS_DISPATCHED_TASKS. Stores information about all tasks that have been completed , implementation_dba_data: WMS.WMS_DISPATCHED_TASKS_ARCH ,
-
VIEW: WMS.WMS_DISPATCHED_TASKS_ARCH#
12.2.2
owner:WMS, object_type:VIEW, object_name:WMS_DISPATCHED_TASKS_ARCH#, status:VALID,
-
SYNONYM: APPS.WMS_DISPATCHED_TASKS_ARCH
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WMS_DISPATCHED_TASKS_ARCH, status:VALID,
-
SYNONYM: APPS.WMS_DISPATCHED_TASKS_ARCH
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WMS_DISPATCHED_TASKS_ARCH, status:VALID,
-
APPS.WMS_ARCHIVE_PVT SQL Statements
12.1.1
-
APPS.WMS_ARCHIVE_PVT SQL Statements
12.2.2
-
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 ,
-
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 ,
-
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 ,
-
PACKAGE BODY: APPS.WMS_ARCHIVE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_ARCHIVE_PVT, status:VALID,
-
VIEW: WMS.WMS_DISPATCHED_TASKS_ARCH#
12.2.2
-
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,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
Table: MTL_SERIAL_NUMBERS
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_SERIAL_NUMBERS, object_name:MTL_SERIAL_NUMBERS, status:VALID, product: INV - Inventory , description: Serial number definitions , implementation_dba_data: INV.MTL_SERIAL_NUMBERS ,
-
12.2.2 DBA Data
12.2.2
-
Table: MTL_SERIAL_NUMBERS
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_SERIAL_NUMBERS, object_name:MTL_SERIAL_NUMBERS, status:VALID, product: INV - Inventory , description: Serial number definitions , implementation_dba_data: INV.MTL_SERIAL_NUMBERS ,
-
PACKAGE BODY: APPS.WMS_ARCHIVE_PVT
12.1.1
-
12.1.1 DBA Data
12.1.1
-
TABLE: WMS.WMS_DISPATCHED_TASKS_ARCH
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_DISPATCHED_TASKS_ARCH, object_name:WMS_DISPATCHED_TASKS_ARCH, status:VALID,
-
TABLE: WMS.WMS_DISPATCHED_TASKS_ARCH
12.1.1
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_DISPATCHED_TASKS_ARCH, object_name:WMS_DISPATCHED_TASKS_ARCH, status:VALID,
-
PACKAGE BODY: APPS.WMS_ARCHIVE_PVT
12.2.2
-
12.2.2 DBA Data
12.2.2
-
Table: MTL_PARAMETERS
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_PARAMETERS, object_name:MTL_PARAMETERS, status:VALID, product: INV - Inventory , description: Inventory control options and defaults , implementation_dba_data: INV.MTL_PARAMETERS ,
-
Table: MTL_PARAMETERS
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_PARAMETERS, object_name:MTL_PARAMETERS, status:VALID, product: INV - Inventory , description: Inventory control options and defaults , implementation_dba_data: INV.MTL_PARAMETERS ,
-
APPS.WMS_ARCHIVE_PVT dependencies on WMS_DISPATCHED_TASKS_ARCH
12.2.2
-
APPS.WMS_ARCHIVE_PVT dependencies on WMS_DISPATCHED_TASKS_ARCH
12.1.1
-
APPS.WMS_ARCHIVE_PVT dependencies on WMS_OP_PLAN_INSTANCES_ARCH
12.2.2
-
APPS.WMS_ARCHIVE_PVT dependencies on WMS_DISPATCHED_TASKS_HISTORY
12.2.2
-
APPS.WMS_ARCHIVE_PVT dependencies on WMS_DISPATCHED_TASKS_HISTORY
12.1.1
-
APPS.WMS_ARCHIVE_PVT dependencies on WMS_OP_PLAN_INSTANCES_ARCH
12.1.1
-
eTRM - WMS Tables and Views
12.1.1
-
eTRM - WMS Tables and Views
12.2.2
-
APPS.WMS_ARCHIVE_PVT dependencies on FND_API
12.1.1
-
APPS.WMS_ARCHIVE_PVT dependencies on FND_API
12.2.2
-
APPS.WMS_ARCHIVE_PVT dependencies on WMS_OP_PLAN_INSTANCES_HIST
12.1.1
-
APPS.WMS_ARCHIVE_PVT dependencies on WMS_OP_OPERTN_INSTANCES_ARCH
12.2.2
-
APPS.WMS_ARCHIVE_PVT dependencies on WMS_OP_OPERTN_INSTANCES_ARCH
12.1.1
-
APPS.WMS_ARCHIVE_PVT dependencies on WMS_OP_PLAN_INSTANCES_HIST
12.2.2
-
APPS.WMS_ARCHIVE_PVT dependencies on WMS_OP_OPERTN_INSTANCES_HIST
12.2.2
-
APPS.WMS_ARCHIVE_PVT dependencies on WMS_OP_OPERTN_INSTANCES_HIST
12.1.1
-
eTRM - WMS Tables and Views
12.2.2
-
eTRM - WMS Tables and Views
12.1.1