Search Results putaway_rule_id
Overview
APPS.WMS_SUGGESTIONS_TEMP_V is a temporary-planning view used by Oracle Warehouse Management (WMS) within Oracle E-Business Suite 12.1.1 and 12.2.2. It presents the interim set of move-order and transaction suggestions generated by the putaway and picking engines, including the recommendations emitted when the system evaluates putaway rules, pick rules, and strategies. In practice the view consolidates rows from the WMS transactions staging table and the move-order request lines table so that suggestions from both the WMS temporary transaction buffer and standard inventory move orders are visible through a single relational interface. Because it exposes the RULE_ID column twice — once decoded as pick_rule_id and once decoded as putaway_rule_id — it is the object most commonly referenced when a developer or functional user searches for "putaway_rule_id" in the EBS data dictionary.
Underlying Base Objects
The view is defined as a UNION of two branches. The first branch selects from WMS_TRANSACTIONS_TEMP (aliased wtt) joined to MTL_TXN_REQUEST_LINES (aliased mol) on wtt.TRANSACTION_TEMP_ID = MOL.LINE_ID, with the predicates wtt.line_type_code = 2 and wtt.type_code IN (1,2). This branch produces Rec_type 'WTT'. The second branch selects from MTL_MATERIAL_TRANSACTIONS_TEMP (mtt) and is tagged Rec_type 'MTT'. Documented referenced base objects are the synonyms MTL_MATERIAL_TRANSACTIONS_TEMP, MTL_SERIAL_NUMBERS_TEMP, MTL_TRANSACTION_LOTS_TEMP, MTL_TXN_REQUEST_LINES, and WMS_TRANSACTIONS_TEMP — all owned physically under their respective INV and WMS schemas, with public synonyms granting APPS access. The view is read-only; it carries no DML semantics and is intended for inquiry, reporting, and integration extraction only.
Key Columns
- ROW_ID, REC_TYPE — row identity and source discriminator ('WTT' for WMS temp rows, 'MTT' for material transactions temp rows).
- TYPE_CODE — WMS suggestion type; 1 designates a putaway suggestion and 2 designates a pick suggestion.
- MOVE_ORDER_LINE_ID / TRANSACTION_TEMP_ID — surrogate keys linking the suggestion to its originating line.
- PUTAWAY_RULE_ID — populated as decode(wtt.type_code,1,wtt.RULE_ID,NULL); non-null only for putaway suggestions.
- PICK_RULE_ID — populated as decode(wtt.type_code,2,wtt.RULE_ID,NULL); the symmetric counterpart.
- PUTAWAY_STRATEGY_ID / PICK_STRATEGY_ID — hard-coded to 0 in the WTT branch, strategy is carried on the rule, not the suggestion.
- ORGANIZATION_ID, INVENTORY_ITEM_ID, REVISION, LOT_NUMBER, SERIAL_NUMBER — item and lot/serial context.
- QUANTITY, SECONDARY_QUANTITY, SECONDARY_UOM — primary and dual-UOM quantities.
- FROM_/TO_ ORGANIZATION_ID, SUBINVENTORY_CODE, LOCATOR_ID, COST_GROUP_ID — source and destination location descriptors.
- LPN_ID — license plate number for LPN-enabled warehouses.
Common Use Cases and Queries
The view is typically queried to audit or debug the putaway engine's output before the suggestions are confirmed. A typical query is:
SELECT inventory_item_id, putaway_rule_id, putaway_strategy_id, to_subinventory_code, to_locator_id, quantity FROM apps.wms_suggestions_temp_v WHERE organization_id = :p_org AND type_code = 1 AND putaway_rule_id IS NOT NULL;
Developers also use it to reconcile WMS suggestions back to MTL_TXN_REQUEST_LINES, grouping by rec_type to distinguish WMS-sourced rows from move-order rows, and to trace which rule drove a destination locator. Because the object is a temporary-surface view, results reflect the current session's or transaction's staging state and should not be used for historical reporting; the permanent audit trail resides in the WMS and INV transaction history tables.
-
VIEW: APPS.WMS_SUGGESTIONS_TEMP_V
12.2.2
-
View: 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, product: WMS - Warehouse Management , description: WMS_SUGGESTIONS_TRACE View , implementation_dba_data: APPS.WMS_SUGGESTIONS_TRACE_V ,
-
VIEW: APPS.WMS_SUGGESTIONS_TRACE_V
12.1.1
-
VIEW: APPS.WMS_SUGGESTIONS_TRACE_V
12.2.2
-
VIEW: APPS.WMS_SUGGESTIONS_TEMP_V
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 ,
-
View: 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, product: WMS - Warehouse Management , description: WMS_SUGGESTIONS_TRACE View , implementation_dba_data: APPS.WMS_SUGGESTIONS_TRACE_V ,
-
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_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,
-
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,
-
APPS.WMS_UT_PKG SQL Statements
12.1.1
-
APPS.WMS_UT_PKG SQL Statements
12.2.2
-
APPS.WMS_UT_PKG dependencies on MTL_ITEM_LOCATIONS
12.1.1
-
APPS.WMS_UT_PKG dependencies on MTL_ITEM_LOCATIONS
12.2.2
-
PACKAGE BODY: APPS.WMS_UT_PKG
12.1.1
-
PACKAGE BODY: APPS.WMS_UT_PKG
12.2.2
-
eTRM - WMS Tables and Views
12.2.2
-
eTRM - WMS Tables and Views
12.1.1