Search Results wms_waveplan_tasks_temp
Overview
The WMS.WMS_WAVEPLAN_TASKS_TEMP table is a transient staging structure within the Oracle Warehouse Management (WMS) module of Oracle E-Business Suite 12.1.1 and 12.2.2. It holds pre-release wave planning task records that are generated during wave plan execution and dispatched to operators, equipment, and work areas before the tasks are written to the permanent task execution tables. Because the object is a temporary staging surface, rows are typically created, processed, and purged within the wave release cycle rather than retained as long-term transactional history.
Functionally, the table stores a denormalized snapshot of task attributes—item, locator, quantity, source and destination, personnel, equipment, LPN, cartonization, and shipment context—so that the wave planning engine can build, validate, and stage tasks before committing them to the broader WMS task model. Below the staging layer, records are consumed by the task dispatcher and the operation plan engine.
The ETRM relationship data classifies this object heuristically as standalone within a Data Vault model, since no other table was mined as referencing it via foreign keys. This is consistent with its role as a temporary work structure: it behaves more like a satellite of the wave planning process than a durable hub or link. Practitioners modeling WMS wave data for analytics should treat it as a staging or satellite source rather than a key integration anchor.
Key Information Stored
The table contains 121 documented columns. The most significant fall into the following groupings:
- Task identity: TASK_ID (surrogate primary key candidate for the task record), PARENT_LINE_ID, TRANSACTION_TEMP_ID, WAVE_HEADER_ID, and TRIP_ID/TRIP_NAME tie the row to a wave and trip.
- Item and quantity: INVENTORY_ITEM_ID, ITEM, REVISION, TRANSACTION_UOM, TRANSACTION_QUANTITY, SECONDARY_TRANSACTION_QUANTITY, and SECONDARY_TRANSACTION_UOM describe the material being moved.
- Source and destination: ORGANIZATION_ID/CODE, SUBINVENTORY, LOCATOR_ID/LOCATOR, TO_ORGANIZATION_ID, TO_SUBINVENTORY, TO_LOCATOR_ID/TO_LOCATOR, FROM_LPN_ID, TO_LPN_ID, and CONTENT_LPN_ID define the movement path.
- Task classification: TRANSACTION_TYPE_ID, TRANSACTION_ACTION_ID, TRANSACTION_SOURCE_TYPE_ID, TASK_TYPE_ID/TASK_TYPE, USER_TASK_TYPE_ID, and OPERATION_PLAN_ID identify what type of work is being performed.
- Resource assignment: PERSON_ID, PERSON, PERSON_RESOURCE_ID, MACHINE_RESOURCE_ID, MACHINE_RESOURCE_CODE, EQUIPMENT_INSTANCE, and DEPARTMENT_ID identify who or what executes the task.
- Status and timing: STATUS_ID, STATUS, PRIORITY, CREATION_TIME, DISPATCHED_TIME, LOADED_TIME, DROP_OFF_TIME, EFFECTIVE_START_DATE, and EFFECTIVE_END_DATE support scheduling and audit.
- LPN and cartonization: ALLOCATED_LPN_ID, CARTONIZATION_ID, PICKED_LPN_ID, LOADED_LPN_ID, and their descriptive counterparts.
- Shipment and customer context: CUSTOMER_ID, SHIP_TO_LOCATION_ID, DELIVERY_ID, CARRIER_ID, SHIP_METHOD, and SHIPMENT_DATE.
Documented foreign keys include TRANSACTION_SOURCE_TYPE_ID to MTL_TXN_SOURCE_TYPES, DEPARTMENT_ID to BOM_DEPARTMENTS, and OPERATION_PLAN_ID to WMS_OP_PLANS_B. No unique business-key index is documented in the ETRM metadata, so TASK_ID is the practical surrogate identifier, while combinations such as WAVE_HEADER_ID plus LINE_NUMBER or TRANSACTION_TEMP_ID act as business-key candidates in practice.
Common Use Cases and Queries
Because this table is a staging area, it is most often queried during wave release troubleshooting and dispatch diagnostics. Typical scenarios include identifying tasks not yet dispatched, reviewing resource assignments, and reconciling planned versus executed quantities.
- Retrieve pending tasks for a wave:
SELECT TASK_ID, ITEM, TRANSACTION_QUANTITY, STATUS, PRIORITY FROM WMS.WMS_WAVEPLAN_TASKS_TEMP WHERE WAVE_HEADER_ID = :wave_id ORDER BY PRIORITY; - Trace unassigned work:
SELECT TASK_ID, PERSON, MACHINE_RESOURCE_CODE, DISPATCHED_TIME FROM WMS.WMS_WAVEPLAN_TASKS_TEMP WHERE PERSON_ID IS NULL AND STATUS = 'PENDING'; - Join to operation plans to see routing context:
SELECT t.TASK_ID, p.OPERATION_PLAN, t.DEPARTMENT_ID FROM WMS.WMS_WAVEPLAN_TASKS_TEMP t JOIN WMS.WMS_OP_PLANS_B p ON p.OPERATION_PLAN_ID = t.OPERATION_PLAN_ID;
Reporting should treat these rows as volatile; production analytics normally read from the consolidated task tables after the wave commits.
Related Objects
- MTL_TXN_SOURCE_TYPES — joined on TRANSACTION_SOURCE_TYPE_ID to classify the origin of the transaction.
- BOM_DEPARTMENTS — joined on DEPARTMENT_ID to identify the responsible department.
- WMS_OP_PLANS_B — joined on OPERATION_PLAN_ID to link tasks to their operation plan definition.
- WMS_WAVEPLAN_TASKS and related task tables — the persistent destination of staged task rows after wave release.
- MTL_SYSTEM_ITEMS_B — joined on INVENTORY_ITEM_ID for item attributes.
- WMS_LPN_SERIAL_NUMBERS / LPN master tables — joined on ALLOCATED_LPN_ID, TO_LPN_ID, and PICKED_LPN_ID for license plate context.
- WMS Task Dispatcher / Wave Planning concurrent programs — the business processes that insert and consume these staging rows.
-
Table: WMS_WAVEPLAN_TASKS_TEMP
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_WAVEPLAN_TASKS_TEMP, object_name:WMS_WAVEPLAN_TASKS_TEMP, status:VALID, product: WMS - Warehouse Management , implementation_dba_data: WMS.WMS_WAVEPLAN_TASKS_TEMP ,
-
Table: WMS_WAVEPLAN_TASKS_TEMP
12.1.1
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_WAVEPLAN_TASKS_TEMP, object_name:WMS_WAVEPLAN_TASKS_TEMP, status:VALID, product: WMS - Warehouse Management , implementation_dba_data: WMS.WMS_WAVEPLAN_TASKS_TEMP ,
-
APPS.WMS_WAVEPLAN_TASKS_PVT SQL Statements
12.1.1
-
VIEW: APPS.WMS_WAVEPLAN_TASK_EXCEPTIONS_V
12.2.2
-
SYNONYM: APPS.WMS_WAVEPLAN_TASKS_TEMP
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WMS_WAVEPLAN_TASKS_TEMP, status:VALID,
-
APPS.WMS_WAVEPLAN_TASKS_PVT SQL Statements
12.2.2
-
SYNONYM: APPS.WMS_WAVEPLAN_TASKS_TEMP
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WMS_WAVEPLAN_TASKS_TEMP, status:VALID,
-
VIEW: APPS.WMS_WAVEPLAN_TIME_PER_TASK_V
12.1.1
-
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_TIME_PER_TASK_V
12.2.2
-
APPS.WMS_PLAN_TASKS_PVT SQL Statements
12.2.2
-
VIEW: APPS.WMS_WAVEPLAN_TASKS_V
12.1.1
-
APPS.WMS_PLAN_TASKS_PVT SQL Statements
12.1.1
-
PACKAGE: APPS.WMS_WAVEPLAN_TASKS_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:WMS_WAVEPLAN_TASKS_PVT, status:VALID,
-
VIEW: APPS.WMS_WAVEPLAN_TASKS_V
12.2.2
-
PACKAGE BODY: APPS.WMS_TASK_ACTION_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_TASK_ACTION_PVT, status:VALID,
-
VIEW: APPS.WMS_WAVEPLAN_TIME_PER_TASK_V
12.1.1
owner:APPS, object_type:VIEW, object_name:WMS_WAVEPLAN_TIME_PER_TASK_V, status:VALID,
-
PACKAGE BODY: APPS.WMS_PLAN_TASKS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_PLAN_TASKS_PVT, status:VALID,
-
PACKAGE: APPS.WMS_WAVEPLAN_TASKS_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:WMS_WAVEPLAN_TASKS_PVT, status:VALID,
-
VIEW: APPS.WMS_WAVEPLAN_TIME_PER_TASK_V
12.2.2
owner:APPS, object_type:VIEW, object_name:WMS_WAVEPLAN_TIME_PER_TASK_V, status:VALID,
-
PACKAGE BODY: APPS.WMS_TASK_ACTION_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_TASK_ACTION_PVT, status:VALID,
-
PACKAGE BODY: APPS.WMS_PLAN_TASKS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_PLAN_TASKS_PVT, status:VALID,
-
APPS.WMS_TASK_ACTION_PVT SQL Statements
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.WMS_WAVEPLAN_TASKS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_WAVEPLAN_TASKS_PVT, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.WMS_WAVEPLAN_TASKS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_WAVEPLAN_TASKS_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
APPS.WMS_TASK_ACTION_PVT SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.WMS_TASK_MGMT_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_TASK_MGMT_PUB, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.WMS_TASK_MGMT_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_TASK_MGMT_PUB, status:VALID,
-
TABLE: WMS.WMS_WAVEPLAN_TASKS_TEMP
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_WAVEPLAN_TASKS_TEMP, object_name:WMS_WAVEPLAN_TASKS_TEMP, status:VALID,
-
TABLE: WMS.WMS_WAVEPLAN_TASKS_TEMP
12.1.1
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_WAVEPLAN_TASKS_TEMP, object_name:WMS_WAVEPLAN_TASKS_TEMP, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
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,
-
PACKAGE: APPS.WMS_TASK_MGMT_PUB
12.1.1
-
PACKAGE: APPS.WMS_TASK_MGMT_PUB
12.2.2
-
12.2.2 DBA Data
12.2.2
-
View: WMS_WAVEPLAN_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_WAVEPLAN_TASKS_V, object_name:WMS_WAVEPLAN_TASKS_V, status:VALID, product: WMS - Warehouse Management , description: WMS Wave Planning Task View , implementation_dba_data: APPS.WMS_WAVEPLAN_TASKS_V ,
-
View: WMS_WAVEPLAN_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_WAVEPLAN_TASKS_V, object_name:WMS_WAVEPLAN_TASKS_V, status:VALID, product: WMS - Warehouse Management , description: WMS Wave Planning Task View , implementation_dba_data: APPS.WMS_WAVEPLAN_TASKS_V ,
-
PACKAGE BODY: APPS.WMS_WAVEPLAN_TASKS_PVT
12.1.1
-
PACKAGE BODY: APPS.WMS_WAVE_PLANNING_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:WMS_WAVE_PLANNING_PVT, status:VALID,
-
PACKAGE BODY: APPS.WMS_WAVEPLAN_TASKS_PVT
12.2.2
-
APPS.WMS_TASK_MGMT_PUB SQL Statements
12.1.1
-
APPS.WMS_TASK_MGMT_PUB SQL Statements
12.2.2
-
APPS.WMS_TASK_ACTION_PVT dependencies on WMS_WAVEPLAN_TASKS_TEMP
12.1.1
-
PACKAGE BODY: APPS.WMS_PLAN_TASKS_PVT
12.2.2