Search Results wms_dispatched_tasks_histor_u1




Overview

WMS.WMS_DISPATCHED_TASKS_HISTORY is an Oracle E-Business Suite warehouse management table owned by the WMS schema. It functions as the history (archive) counterpart to WMS_DISPATCHED_TASKS, storing information about all warehouse tasks that have been completed. In Oracle EBS 12.1.1 and 12.2.2, this object resides in the APPS_TS_TX_DATA tablespace and is registered under FND Design Data as WMS.WMS_DISPATCHED_TASKS_HISTORY with status VALID. The table is one of the principal sources for auditing and reporting on executed warehouse activity, capturing both the operational context of a task and the material transaction it produced.

Metadata mining of the foreign key structure suggests a Data Vault classification of link. This is a modeling suggestion, reflecting that the table chiefly records associations between business entities—people, resources, organizations, inventory items, and transactions—rather than serving as a standalone hub. The table carries 68 documented columns, an extensive descriptive attribute set, and 13 documented indexes, of which one is unique.

Key Information Stored

The surrogate primary key is TASK_ID, which is also the single column of the unique index WMS_DISPATCHED_TASKS_HISTOR_U1. That unique constraint is therefore the primary business-key candidate for row-level identification, and it makes TASK_ID the most reliable join and lookup predicate.

Common Use Cases and Queries

Primary applications include warehouse labor productivity reporting, task throughput and cycle-time analysis, and audit reconciliation between completed tasks and inventory transactions. The composite indexes are designed to accelerate precisely these queries: WMS_DISPATCHED_TASKS_HISTOR_N1 supports per-person productivity over a date range, N3 supports drop-off timing analysis, and N9 supports item/transaction/status lookups scoped to an organization.

A representative query retrieves completed tasks for a person over a period:

  • SELECT task_id, user_task_type, dispatched_time, drop_off_time, transaction_quantity FROM wms.wms_dispatched_tasks_history WHERE person_id = :person_id AND effective_start_date >= :from_date AND effective_start_date < :to_date;

Cycle-time reporting by task type uses the DISPATCHED_TIME and DROP_OFF_TIME columns, grouped by USER_TASK_TYPE. Reconciliation joins to MTL_MATERIAL_TRANSACTIONS on TRANSACTION_ID to validate that each completed task produced a matching inventory transaction. Organization-scoped extraction commonly filters on ORGANIZATION_ID and LAST_UPDATE_DATE, matching index N8.

Related Objects

The documented foreign keys identify the following significant relationships:

WMS_DISPATCHED_TASKS_HISTOR_N5 on OPERATION_PLAN_ID and MOVE_ORDER_LINE_ID, together with N12 on SOURCE_DOCUMENT_ID, additionally points to move order and source document flows used by WMS-directed operations. Together these relationships make the table a central link between warehouse execution, inventory transaction, and resource accounting data.