Search Results pick_rule_id
Overview
APPS.WMS_DISPATCHABLE_TASKS_V is a union view in Oracle E-Business Suite Warehouse Management System (WMS) that consolidates dispatchable warehouse tasks into a single, unified result set for the Warehouse Management and Mobile Supply Chain Applications execution engines. It presents work ready to be dispatched to warehouse operators, drawing from two distinct sources: pending material transactions staged in the transaction interface and open cycle count entries awaiting processing. The view is used by the WMS task dispatching framework to determine which tasks are available for assignment, sequencing, and execution on handheld devices and within the warehouse control system.
Because the view underpins task dispatching, its contents directly influence how work is presented to warehouse personnel. Each row represents a candidate task with its associated zone, locator, item, quantity, and priority information, allowing the dispatch engine to apply pick rules and prioritization logic uniformly across disparate task types.
Underlying Base Objects
The view is defined as a UNION ALL over two documented base objects, both referenced through APPS synonyms:
- MTL_MATERIAL_TRANSACTIONS_TEMP — the transaction interface table holding staged material transactions. Rows are included only when WMS_TASK_TYPE is not null and TRANSACTION_STATUS equals 2, indicating a pending, dispatchable warehouse task.
- MTL_CYCLE_COUNT_ENTRIES — the cycle count entry table. Rows are included when ENTRY_STATUS_CODE is 1 or 3 and NVL(EXPORT_FLAG, 2) equals 2, representing count entries that are eligible for dispatch. These rows are aggregated by CYCLE_COUNT_HEADER_ID, ORGANIZATION_ID, SUBINVENTORY, LOCATOR_ID, INVENTORY_ITEM_ID, and REVISION, using MIN() on several attributes to collapse multiple entries into one dispatchable task.
Both branches share a common column projection, which is why the union is possible. The material transaction branch produces task identifiers directly from TRANSACTION_TEMP_ID, while the cycle count branch synthesizes a task using MIN(CYCLE_COUNT_ENTRY_ID) and assigns a fixed WMS_TASK_TYPE_ID of 3 to distinguish cycle counting tasks from other task types.
Key Columns
The view exposes a normalized task structure. The most commonly referenced columns include:
- TASK_ID — the unique task identifier, sourced from TRANSACTION_TEMP_ID or the minimum CYCLE_COUNT_ENTRY_ID.
- WMS_TASK_TYPE_ID — the task category. Material transaction tasks carry the source WMS_TASK_TYPE; cycle count tasks are hard-coded to 3.
- ORGANIZATION_ID — the inventory organization owning the task.
- ZONE — the subinventory code mapped as the task zone.
- LOCATOR_ID — the specific locator where the task must be performed. This is the column most often filtered by users searching for locator-specific work, and it appears in both branches of the union as well as in the cycle count GROUP BY clause.
- TASK_PRIORITY — relative priority used for sequencing dispatch.
- REVISION, LOT_NUMBER — item revision and lot context.
- TRANSACTION_UOM, TRANSACTION_QUANTITY — the unit of measure and quantity for material movement tasks; these are null for cycle count rows, which instead carry empty string or null placeholders.
- INVENTORY_ITEM_ID — the item to be moved or counted.
- PICK_RULE_ID, PICK_SLIP_NUMBER, CARTONIZATION_ID, MOVE_ORDER_LINE_ID — linkage to picking, cartonization, and move order processing; these are populated only for material transaction tasks.
Common Use Cases and Queries
Typical usage centers on identifying dispatchable work by zone, locator, or item. A common requirement is to list all pending tasks for a specific locator, which the locator_id column supports directly:
- Query all ready tasks in an organization: SELECT task_id, wms_task_type_id, zone, locator_id, task_priority, inventory_item_id FROM apps.wms_dispatchable_tasks_v WHERE organization_id = :org_id ORDER BY task_priority;
- Filter by locator: SELECT task_id, wms_task_type_id, locator_id, transaction_quantity FROM apps.wms_dispatchable_tasks_v WHERE locator_id = :locator_id;
- Isolate cycle count tasks: SELECT task_id, locator_id, inventory_item_id FROM apps.wms_dispatchable_tasks_v WHERE wms_task_type_id = 3;
- Isolate material movement tasks with pick details: SELECT task_id, pick_slip_number, move_order_line_id, cartonization_id FROM apps.wms_dispatchable_tasks_v WHERE wms_task_type_id <> 3;
These queries are commonly embedded in custom dispatch reports, mobile device integrations, and warehouse dashboards that need a unified, real-time picture of all work available for assignment across both transaction-driven and cycle count-driven activities.
-
VIEW: APPS.WMS_DISPATCHABLE_TASKS_V
12.2.2
-
VIEW: APPS.WMS_DISPATCHABLE_TASKS_V
12.1.1
-
View: WMS_DISPATCHABLE_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_DISPATCHABLE_TASKS_V, object_name:WMS_DISPATCHABLE_TASKS_V, status:VALID, product: WMS - Warehouse Management , description: Dispachable tasks within the warehouse, used by task dispatching engine , implementation_dba_data: APPS.WMS_DISPATCHABLE_TASKS_V ,
-
View: WMS_DISPATCHABLE_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_DISPATCHABLE_TASKS_V, object_name:WMS_DISPATCHABLE_TASKS_V, status:VALID, product: WMS - Warehouse Management , description: Dispachable tasks within the warehouse, used by task dispatching engine , implementation_dba_data: APPS.WMS_DISPATCHABLE_TASKS_V ,
-
VIEW: WMS.WMS_TRANSACTION_LOTS_TRACE#
12.2.2
-
VIEW: APPS.WMS_SUGGESTIONS_TEMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_SUGGESTIONS_TEMP_V, object_name:WMS_SUGGESTIONS_TEMP_V, status:VALID,
-
VIEW: APPS.WMS_DISPATCHABLE_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_DISPATCHABLE_TASKS_V, object_name:WMS_DISPATCHABLE_TASKS_V, status:VALID,
-
VIEW: APPS.WMS_SUGGESTIONS_TRACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_SUGGESTIONS_TRACE_V, object_name:WMS_SUGGESTIONS_TRACE_V, status:VALID,
-
VIEW: APPS.WMS_SUGGESTIONS_TRACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_SUGGESTIONS_TRACE_V, object_name:WMS_SUGGESTIONS_TRACE_V, status:VALID,
-
APPS.CSP_PP_UTIL SQL Statements
12.2.2
-
APPS.CSP_PP_UTIL SQL Statements
12.1.1
-
VIEW: APPS.WMS_SUGGESTIONS_TEMP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_SUGGESTIONS_TEMP_V, object_name:WMS_SUGGESTIONS_TEMP_V, status:VALID,
-
VIEW: APPS.WMS_DISPATCHABLE_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_DISPATCHABLE_TASKS_V, object_name:WMS_DISPATCHABLE_TASKS_V, status:VALID,
-
VIEW: INV.MTL_MATERIAL_TRANSACTIONS#
12.2.2
-
VIEW: INV.MTL_TRANSACTION_LOTS_TEMP#
12.2.2
-
VIEW: WMS.WMS_MATERIAL_TXN_TRACE#
12.2.2
-
VIEW: APPS.MTL_TRANSACTION_LOTS_TEMP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TRANSACTION_LOTS_TEMP_V, object_name:MTL_TRANSACTION_LOTS_TEMP_V, status:VALID,
-
VIEW: WMS.WMS_TRANSACTION_LOTS_TRACE#
12.2.2
owner:WMS, object_type:VIEW, object_name:WMS_TRANSACTION_LOTS_TRACE#, status:VALID,
-
VIEW: APPS.MTL_TRANSACTION_LOTS_TEMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TRANSACTION_LOTS_TEMP_V, object_name:MTL_TRANSACTION_LOTS_TEMP_V, status:VALID,
-
VIEW: INV.MTL_MATERIAL_TRANSACTIONS_TEM#
12.2.2
-
APPS.WMS_TASK_DISPATCH_ENGINE SQL Statements
12.1.1
-
APPS.WMS_TASK_DISPATCH_ENGINE SQL Statements
12.2.2
-
TABLE: APPS.MTL_MTLT_BACKUP
12.1.1
owner:APPS, object_type:TABLE, object_name:MTL_MTLT_BACKUP, status:VALID,
-
VIEW: APPS.MTL_MATERIAL_TXNS_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MATERIAL_TXNS_VAL_V, object_name:MTL_MATERIAL_TXNS_VAL_V, status:VALID,
-
VIEW: APPS.MTL_MATERIAL_TXNS_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MATERIAL_TXNS_VAL_V, object_name:MTL_MATERIAL_TXNS_VAL_V, status:VALID,
-
APPS.WMS_ENGINE_PVT SQL Statements
12.1.1
-
PACKAGE: APPS.INV_VIEW_MTL_TXN
12.1.1
-
View: WMS_SUGGESTIONS_TEMP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_SUGGESTIONS_TEMP_V, object_name:WMS_SUGGESTIONS_TEMP_V, status:VALID, product: WMS - Warehouse Management , description: WMS SUGGESTIONS TEMP View , implementation_dba_data: APPS.WMS_SUGGESTIONS_TEMP_V ,
-
View: WMS_SUGGESTIONS_TEMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_SUGGESTIONS_TEMP_V, object_name:WMS_SUGGESTIONS_TEMP_V, status:VALID, product: WMS - Warehouse Management , description: WMS SUGGESTIONS TEMP View , implementation_dba_data: APPS.WMS_SUGGESTIONS_TEMP_V ,
-
APPS.GML_RCV_COMMON_APIS SQL Statements
12.2.2
-
APPS.GML_RCV_COMMON_APIS SQL Statements
12.1.1
-
APPS.WMS_SEARCH_ORDER_GLOBALS_PVT SQL Statements
12.1.1
-
PACKAGE: APPS.INV_VIEW_MTL_TXN
12.2.2
-
APPS.WMS_SEARCH_ORDER_GLOBALS_PVT SQL Statements
12.2.2
-
VIEW: INV.MTL_TRANSACTION_LOTS_TEMP#
12.2.2
owner:INV, object_type:VIEW, object_name:MTL_TRANSACTION_LOTS_TEMP#, status:VALID,
-
APPS.WMS_ENGINE_PVT SQL Statements
12.2.2
-
VIEW: INV.MTL_MATERIAL_TRANSACTIONS#
12.2.2
owner:INV, object_type:VIEW, object_name:MTL_MATERIAL_TRANSACTIONS#, status:VALID,
-
VIEW: APPS.MTL_TRANSACTIONS_TEMP_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TRANSACTIONS_TEMP_ALL_V, object_name:MTL_TRANSACTIONS_TEMP_ALL_V, status:VALID,
-
VIEW: APPS.MTL_TRANSACTIONS_TEMP_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TRANSACTIONS_TEMP_ALL_V, object_name:MTL_TRANSACTIONS_TEMP_ALL_V, status:VALID,
-
TABLE: INV.MTL_COGS_RECOGNITION_TEMP
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_COGS_RECOGNITION_TEMP, object_name:MTL_COGS_RECOGNITION_TEMP, status:VALID,
-
APPS.WMS_BULK_PICK SQL Statements
12.1.1
-
VIEW: APPS.WMS_COST_GROUPS_INPUT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_COST_GROUPS_INPUT_V, object_name:WMS_COST_GROUPS_INPUT_V, status:VALID,
-
TABLE: INV.MTL_COGS_RECOGNITION_TEMP
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_COGS_RECOGNITION_TEMP, object_name:MTL_COGS_RECOGNITION_TEMP, status:VALID,
-
VIEW: APPS.WMS_COST_GROUPS_INPUT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_COST_GROUPS_INPUT_V, object_name:WMS_COST_GROUPS_INPUT_V, status:VALID,
-
VIEW: WMS.WMS_MATERIAL_TXN_TRACE#
12.2.2
owner:WMS, object_type:VIEW, object_name:WMS_MATERIAL_TXN_TRACE#, status:VALID,
-
View: MTL_TRANSACTION_LOTS_TEMP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TRANSACTION_LOTS_TEMP_V, object_name:MTL_TRANSACTION_LOTS_TEMP_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_TRANSACTION_LOTS_TEMP_V ,
-
VIEW: APPS.WMS_SUGGESTIONS_TEMP_V
12.2.2
-
TABLE: APPS.MTL_MMTT_BACKUP
12.1.1
owner:APPS, object_type:TABLE, object_name:MTL_MMTT_BACKUP, status:VALID,
-
PACKAGE BODY: APPS.CSP_PP_UTIL
12.1.1
-
View: MTL_TRANSACTION_LOTS_TEMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_TRANSACTION_LOTS_TEMP_V, object_name:MTL_TRANSACTION_LOTS_TEMP_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_TRANSACTION_LOTS_TEMP_V ,