Search Results num_of_child_tasks
Overview
APPS.WMS_WAVEPLAN_TASKS_V is a reporting and integration view within the Oracle Warehouse Management (WMS) module of Oracle E-Business Suite. It exposes the task-level records that constitute a wave plan execution — the individual work tasks generated when a wave plan is released for picking, moving, put-away, or other warehouse operations. Each row represents a discrete unit of work assigned to a resource, person, or machine within the warehouse.
The view is defined entirely as a projection over a single temporary table, WMS_WAVEPLAN_TASKS_TEMP, without joins to master data tables. This design means the view relies on pre-populated, denormalized columns (such as ITEM, ORGANIZATION_CODE, LOCATOR, and CUSTOMER) that are populated by the wave plan engine rather than resolved through joins at query time. The view therefore performs well for high-volume operational reporting but reflects only the data current at the time the temporary records were generated.
Underlying Base Objects
The only documented base object referenced by this view is WMS_WAVEPLAN_TASKS_TEMP, accessed through a synonym. The view is a direct SELECT of all columns from that table, with no filtering, aggregation, or joins. Consequently, the view inherits the temporary nature of its source: records may be purged or regenerated as wave plans are processed, released, or purged. Application logic is responsible for populating the temporary table before the view is queried, and consumers should treat the data as transient rather than as a persistent record of warehouse task history.
Key Columns
- TASK_ID — Primary identifier for the wave plan task; the principal key for joining to related task or dispatch information.
- PARENT_LINE_ID — Groups child tasks under a parent line, enabling hierarchical task structures.
- NUM_OF_CHILD_TASKS — Reports how many child tasks are associated with the task record, supporting the task hierarchy.
- INVENTORY_ITEM_ID / ITEM / ITEM_DESCRIPTION / REVISION — Identify the item being handled.
- TRANSACTION_QUANTITY / TRANSACTION_UOM — The quantity and unit of measure for the task.
- ORGANIZATION_ID / ORGANIZATION_CODE / SUBINVENTORY / LOCATOR / LOCATOR_ID — Source warehouse, subinventory, and locator.
- TO_ORGANIZATION_ID / TO_SUBINVENTORY / TO_LOCATOR — Destination location details for move and transfer tasks.
- PERSON_ID / PERSON_RESOURCE_ID / MACHINE_RESOURCE_ID — Assigned resource for the task.
- STATUS_ID / STATUS / DISPATCHED_TIME / LOADED_TIME / DROP_OFF_TIME — Task lifecycle and status tracking.
- LPN columns (FROM_LPN, TO_LPN, CONTENT_LPN, ALLOCATED_LPN, PICKED_LPN, LOADED_LPN) — License plate number references supporting container handling.
- DELIVERY_ID / SHIP_METHOD / CARRIER / SHIPMENT_DATE — Outbound shipment context.
- PRIORITY / PRIORITY_ORIGINAL / TIME_ESTIMATE — Planning and sequencing attributes.
- EXPANSION_CODE / PLANS_TASKS / OPERATION_SEQUENCE — Controls how the task is expanded within the wave plan.
Common Use Cases and Queries
Typical uses include monitoring wave plan task status, calculating workloads per resource, and validating child task hierarchies using NUM_OF_CHILD_TASKS and PARENT_LINE_ID.
Example: identifying tasks and their child counts.
SELECT TASK_ID, PARENT_LINE_ID, NUM_OF_CHILD_TASKS, STATUS, PERSON FROM APPS.WMS_WAVEPLAN_TASKS_V WHERE NUM_OF_CHILD_TASKS > 0;
Example: listing open tasks assigned to a person.
SELECT TASK_ID, ITEM, TRANSACTION_QUANTITY, ORGANIZATION_CODE FROM APPS.WMS_WAVEPLAN_TASKS_V WHERE PERSON_ID = :person_id AND STATUS != 'Closed';
Because the view has no joins, it is efficient for bulk operational queries. Consumers should nonetheless validate data currency against the temporary table's lifecycle before using results for analytical or historical reporting.
-
VIEW: APPS.WMS_WAVEPLAN_TASKS_V
12.1.1
-
VIEW: APPS.WMS_WP_TASKS_GTMP_V
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: APPS.WMS_WP_TASKS_GTMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_WP_TASKS_GTMP_V, object_name:WMS_WP_TASKS_GTMP_V, status:VALID,
-
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 ,
-
VIEW: APPS.WMS_WAVEPLAN_TASKS_V
12.2.2
-
TABLE: WMS.WMS_WP_TASKS_GTMP
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_WP_TASKS_GTMP, object_name:WMS_WP_TASKS_GTMP, status:VALID,
-
VIEW: APPS.WMS_WP_WWB_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:WMS_WP_WWB_TASKS_V, status:VALID,
-
View: WMS_WP_TASKS_GTMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_WP_TASKS_GTMP_V, object_name:WMS_WP_TASKS_GTMP_V, status:VALID, product: WMS - Warehouse Management , implementation_dba_data: APPS.WMS_WP_TASKS_GTMP_V ,
-
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,
-
PACKAGE: APPS.WMS_TASK_MGMT_PUB
12.2.2
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
PACKAGE: APPS.WMS_TASK_MGMT_PUB
12.1.1
-
APPS.WMS_TASK_MGMT_PUB SQL Statements
12.1.1
-
APPS.WMS_TASK_MGMT_PUB SQL Statements
12.2.2
-
APPS.WMS_WAVE_PLANNING_PVT SQL Statements
12.2.2
-
APPS.WMS_WAVEPLAN_TASKS_PVT SQL Statements
12.1.1
-
APPS.WMS_WAVE_PLANNING_PVT dependencies on WMS_LICENSE_PLATE_NUMBERS
12.2.2
-
APPS.WMS_WAVEPLAN_TASKS_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.WMS_TASK_MGMT_PUB
12.1.1
-
PACKAGE BODY: APPS.WMS_TASK_MGMT_PUB
12.2.2
-
APPS.WMS_WAVE_PLANNING_PVT dependencies on MTL_MATERIAL_TRANSACTIONS_TEMP
12.2.2
-
APPS.WMS_WAVE_PLANNING_PVT dependencies on MTL_MATERIAL_TRANSACTIONS
12.2.2
-
PACKAGE BODY: APPS.WMS_WAVE_PLANNING_PVT
12.2.2
-
APPS.WMS_WAVE_PLANNING_PVT dependencies on WMS_WP_TASKS_GTMP
12.2.2
-
eTRM - WMS Tables and Views
12.2.2
-
PACKAGE BODY: APPS.WMS_WAVEPLAN_TASKS_PVT
12.1.1
-
PACKAGE BODY: APPS.WMS_WAVEPLAN_TASKS_PVT
12.2.2
-
APPS.WMS_WAVEPLAN_TASKS_PVT dependencies on WMS_WAVEPLAN_TASKS_TEMP
12.1.1
-
eTRM - WMS Tables and Views
12.1.1
-
APPS.WMS_WAVEPLAN_TASKS_PVT dependencies on WMS_WAVEPLAN_TASKS_TEMP
12.2.2