Search Results move_order_line_number
Overview
WMS_WAVEPLAN_TASK_EXCEPTIONS_V is an APPS-owned reporting view within the Oracle Warehouse Management (WMS) module. Its purpose is to consolidate exception records raised against wave planning and dispatched warehouse tasks, exposing them in a denormalized, human-readable form suitable for operational reporting, dashboards, and integration extract programs. Rather than requiring report authors to join the low-level WMS execution tables directly, the view pre-resolves surrogate keys into descriptive attributes—reason name and description, person full name, concatenated locator and item flexfield segments, and move order header and line numbers.
In Oracle EBS 12.1.1 and 12.2.2, the object is delivered as a VALID view in the APPS schema. Because it is a view rather than a table, it carries no storage of its own; all data is materialized at query time from the underlying transaction and exception tables. This makes it appropriate for read-only reporting, BI Publisher datasets, and custom concurrent programs, but unsuitable as a target for DML.
Underlying Base Objects
The documented base objects referenced by the view are:
- WMS_EXCEPTIONS — the primary exception records, supplying reason, timestamp, person, subinventory, locator, and item identifiers.
- WMS_DISPATCHED_TASKS_HISTORY — historical dispatched task detail, linked on transaction temp id, organization, and task type, and carrying the MOVE_ORDER_LINE_ID join to the move order line.
- WMS_WAVEPLAN_TASKS_TEMP — wave plan task staging rows, used to correlate task execution back to a specific move order line.
- MTL_TXN_REQUEST_HEADERS and MTL_TXN_REQUEST_LINES — the move order header and line, providing the move order number (REQUEST_NUMBER) and MOVE_ORDER_LINE_NUMBER.
- MTL_MATERIAL_TRANSACTIONS — optional transaction detail joined via outer joins on transaction set id, subinventory, and locator.
- MTL_TRANSACTION_REASONS — reason code, name, and description.
- PER_ALL_PEOPLE_F — the person full name for the operator associated with the exception.
- MTL_SYSTEM_ITEMS_KFV and MTL_ITEM_LOCATIONS_KFV — key flexfield views supplying concatenated item and locator segments.
The view is assembled from an inline subquery that joins WMS_EXCEPTIONS, WMS_DISPATCHED_TASKS_HISTORY, MTL_TXN_REQUEST_LINES, WMS_WAVEPLAN_TASKS_TEMP, and MTL_MATERIAL_TRANSACTIONS, and is then outer-joined to MTL_TRANSACTION_REASONS, PER_ALL_PEOPLE_F, MTL_SYSTEM_ITEMS_KFV, and MTL_ITEM_LOCATIONS_KFV, with a DISTINCT applied to eliminate duplicates arising from the multi-way joins.
Key Columns
- ORGANIZATION_ID — warehouse/inventory organization context.
- TASK_ID, TRANSACTION_ID, LINE_ID — task and transaction identifiers linking the exception to execution detail; TRANSACTION_ID is normalized from the dispatched task history and material transaction.
- REASON_ID, REASON_NAME, REASON_DESCRIPTION — the exception reason as configured in MTL_TRANSACTION_REASONS.
- EXCEPTION_TIME — creation timestamp of the exception record.
- PERSON_ID, FULL_NAME — the user or operator responsible.
- SUBNINVENTORY_CODE, LOCATOR_ID, LOCATOR — source subinventory and locator, with LOCATOR rendered from concatenated flexfield segments.
- INVENTORY_ITEM_ID, ITEM — the affected item, with ITEM rendered from concatenated segments.
- MOVE_ORDER_LINE_NUMBER — the move order line number, derived from MTL_TXN_REQUEST_LINES.LINE_NUMBER.
- MOVE_ORDER_NUMBER — the move order request number from MTL_TXN_REQUEST_HEADERS.
Common Use Cases and Queries
Typical usage includes exception trend reporting by reason, operator productivity analysis, and tracing exceptions back to their originating move order line for corrective action. A representative query filtering by move order line number is:
SELECT move_order_number, move_order_line_number, item, locator, reason_name, full_name, exception_time FROM wms_waveplan_task_exceptions_v WHERE organization_id = :org_id AND move_order_line_number = :line_number ORDER BY exception_time DESC;SELECT reason_name, COUNT(*) FROM wms_waveplan_task_exceptions_v WHERE exception_time >= :from_date GROUP BY reason_name ORDER BY 2 DESC;
The first query is the standard path for a "move_order_line_number" lookup, returning all exceptions associated with a specific move order line together with the item, locator, reason, and operator. Because the view applies DISTINCT over a multi-table join, large date ranges should be bounded by organization and time predicates to preserve performance.
-
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 ,
-
VIEW: APPS.WMS_WAVEPLAN_TASK_EXCEPTIONS_V
12.2.2
-
View: MTL_MOVE_ORDER_LINES_V
12.1.1
product: INV - Inventory , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: MTL_MOVE_ORDER_LINES_V
12.2.2
product: INV - Inventory , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.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,
-
View: WSHFV_DELIVERY_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_DELIVERY_DETAILS, object_name:WSHFV_DELIVERY_DETAILS, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Delivery Details. , implementation_dba_data: APPS.WSHFV_DELIVERY_DETAILS ,
-
View: WSHFV_DELIVERY_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_DELIVERY_DETAILS, object_name:WSHFV_DELIVERY_DETAILS, status:VALID, product: WSH - Shipping Execution , description: Full BIS Business View for Delivery Details. , implementation_dba_data: APPS.WSHFV_DELIVERY_DETAILS ,
-
VIEW: APPS.WSHFV_DELIVERY_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_DELIVERY_DETAILS, object_name:WSHFV_DELIVERY_DETAILS, status:VALID,
-
VIEW: APPS.WSHFV_DELIVERY_DETAILS
12.1.1
-
VIEW: APPS.WSHFV_DELIVERY_DETAILS
12.2.2
-
VIEW: APPS.WSHFV_DELIVERY_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_DELIVERY_DETAILS, object_name:WSHFV_DELIVERY_DETAILS, status:VALID,
-
eTRM - WMS Tables and Views
12.2.2
-
eTRM - WSH Tables and Views
12.1.1
description: Stores hierarchy for zones. Each region component of a zone has a record in this table. ,
-
eTRM - WSH Tables and Views
12.2.2
description: Stores hierarchy for zones. Each region component of a zone has a record in this table. ,