Search Results secondary_uom_code
Overview
APPS.WSH_PICK_SLIP_V is a reporting and integration view in Oracle E-Business Suite (documented for 12.1.1 and 12.2.2) that consolidates material movement lines associated with pick slips across three distinct transactional sources. The view presents a unified result set of pick-slip detail lines, tagging each row with a LINE_STATUS of either 'UNPICKED' or 'PICKED' depending on the source object from which the row originates. This design allows downstream consumers—custom reports, interfaces, and Oracle Warehouse Management (WMS) or shipping workflows—to query a single object without separately unioning staging, historical, and move-order tables.
The view is not a base table; it is a read-only UNION ALL construct. Consequently, it is typically used for inquiry and reporting rather than transactional DML. Each source branch applies its own filter on PICK_SLIP_NUMBER and quantity, normalizing signs so that picked quantities appear as positive values.
Underlying Base Objects
Per the ETRM metadata, the view is defined over three referenced base objects, all exposed as SYNONYMs in the APPS schema:
- MTL_MATERIAL_TRANSACTIONS_TEMP — staging rows not yet posted. These contribute lines flagged
'UNPICKED'and are filtered byPICK_SLIP_NUMBER IS NOT NULL AND ABS(NVL(TRANSACTION_QUANTITY,0)) > 0. - MTL_MATERIAL_TRANSACTIONS — posted inventory transactions. These contribute lines flagged
'PICKED', filtered byPICK_SLIP_NUMBER IS NOT NULL AND NVL(TRANSACTION_QUANTITY,0) < 0(issue/negative quantities). - MTL_TXN_REQUEST_LINES — move-order request lines, also flagged
'PICKED', filtered byPICK_SLIP_NUMBER IS NOT NULL. This branch supplies move-order context even where no inventory transaction has yet posted.
The three branches are combined with UNION ALL, with column aliases harmonized so that each branch maps cleanly onto the same projection.
Key Columns
- PICK_SLIP_NUMBER — the driving identifier; all three branches require it to be non-null.
- MOVE_ORDER_LINE_ID — the move-order line identifier, sourced natively from MTL_MATERIAL_TRANSACTIONS_TEMP and MTL_MATERIAL_TRANSACTIONS, and from
LINE_IDin MTL_TXN_REQUEST_LINES. This is the key join back to move-order detail and is the term users most frequently search on. - FROM_SUBINVENTORY / FROM_LOCATOR_ID — source subinventory and locator.
- TO_SUBINVENTORY / TO_LOCATOR_ID — destination subinventory and locator, derived from transfer_subinventory/transfer_to_location, transfer_locator_id, or to_subinventory_code/to_locator_id depending on branch.
- PRIMARY_QTY — absolute primary quantity, normalized to positive.
- LINE_STATUS — literal
'UNPICKED'or'PICKED'. - DETAILING_DATE — creation_date, transaction_date, or pick_slip_date per branch.
- TRANSACTION_ID — transaction_temp_id or transaction_id; null for move-order lines.
- ITEM_PRIMARY_UOM_CODE / SECONDARY_UOM_CODE / SECONDARY_TRANSACTION_QUANTITY — UOM and secondary-quantity attributes for dual-UOM reporting.
Common Use Cases and Queries
The view supports pick-slip status reporting, reconciliation between staged and posted movements, and integration feeds that must associate move-order lines with pick slips. A representative query:
- Query all lines for a slip:
SELECT move_order_line_id, line_status, primary_qty FROM apps.wsh_pick_slip_v WHERE pick_slip_number = :slip; - Find unpicked lines:
SELECT * FROM apps.wsh_pick_slip_v WHERE line_status = 'UNPICKED'; - Join to move-order detail by
MOVE_ORDER_LINE_IDto enrich with item and order attributes.
Because the view is a UNION ALL over volatile sources, filters on PICK_SLIP_NUMBER and MOVE_ORDER_LINE_ID should always be supplied to limit scan cost.
-
APPS.INV_RCV_CACHE SQL Statements
12.1.1
-
APPS.INV_RCV_CACHE SQL Statements
12.2.2
-
VIEW: APPS.WSH_PICK_SLIP_V
12.1.1
-
VIEW: APPS.WSH_PICK_SLIP_V
12.2.2
-
VIEW: INV.MTL_ONHAND_QUANTITIES_DETAIL#
12.2.2
-
View: WSH_PICK_SLIP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PICK_SLIP_V, object_name:WSH_PICK_SLIP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_PICK_SLIP_V ,
-
View: WSH_PICK_SLIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PICK_SLIP_V, object_name:WSH_PICK_SLIP_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_PICK_SLIP_V ,
-
VIEW: INV.MTL_ONHAND_QUANTITIES_D_BKP#
12.2.2
-
VIEW: INV.MTL_REPLENISH_LINES#
12.2.2
-
VIEW: INV.MTL_ONHAND_DISCREPANCIES#
12.2.2
-
VIEW: WMS.WMS_RULE_TRACE_LINES#
12.2.2
-
VIEW: INV.MTL_MOQD_BACKUP#
12.2.2
-
VIEW: WMS.WMS_LPN_CONTENTS#
12.2.2
-
View: RCV_FTE_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_FTE_TRANSACTIONS_V, object_name:RCV_FTE_TRANSACTIONS_V, status:VALID, product: PO - Purchasing , description: Rolled up transactions for logistics , implementation_dba_data: APPS.RCV_FTE_TRANSACTIONS_V ,
-
VIEW: APPS.MTL_MATERIAL_STATUS_HIST_ERV
12.1.1
-
VIEW: APPS.RCV_FTE_TRANSACTIONS_V
12.2.2
-
VIEW: APPS.RCV_FTE_TRANSACTIONS_V
12.1.1
-
VIEW: WMS.WMS_LPN_HISTORIES#
12.2.2
-
View: RCV_FTE_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_FTE_TRANSACTIONS_V, object_name:RCV_FTE_TRANSACTIONS_V, status:VALID, product: PO - Purchasing , description: Rolled up transactions for logistics , implementation_dba_data: APPS.RCV_FTE_TRANSACTIONS_V ,
-
APPS.GML_REQIMPORT_GRP SQL Statements
12.1.1
-
VIEW: GMI.IC_TXN_REQUEST_LINES#
12.2.2
-
View: MTL_ITEM_LOT_UOM_CONV_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_LOT_UOM_CONV_ERV, object_name:MTL_ITEM_LOT_UOM_CONV_ERV, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_ITEM_LOT_UOM_CONV_ERV ,
-
View: MTL_ITEM_LOT_UOM_CONV_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_LOT_UOM_CONV_ERV, object_name:MTL_ITEM_LOT_UOM_CONV_ERV, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_ITEM_LOT_UOM_CONV_ERV ,
-
VIEW: APPS.MTL_MATERIAL_STATUS_HIST_ERV
12.2.2
-
APPS.INV_REDUCE_MOQD_PVT SQL Statements
12.1.1
-
View: MTL_MATERIAL_STATUS_HIST_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MATERIAL_STATUS_HIST_ERV, object_name:MTL_MATERIAL_STATUS_HIST_ERV, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_MATERIAL_STATUS_HIST_ERV ,
-
VIEW: INL.INL_SHIP_LINES_ALL#
12.2.2
-
APPS.INV_REDUCE_MOQD_PVT SQL Statements
12.2.2
-
VIEW: APPS.MTL_ITEM_LOT_UOM_CONV_ERV
12.2.2
-
View: MTL_MATERIAL_STATUS_HIST_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_MATERIAL_STATUS_HIST_ERV, object_name:MTL_MATERIAL_STATUS_HIST_ERV, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_MATERIAL_STATUS_HIST_ERV ,
-
VIEW: APPS.MTL_ITEM_LOT_UOM_CONV_ERV
12.1.1
-
View: MTL_ONHAND_QUANTITIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_QUANTITIES, object_name:MTL_ONHAND_QUANTITIES, status:VALID, product: INV - Inventory , description: View of items owned, planned and physically belonging to the same inventory organization , implementation_dba_data: APPS.MTL_ONHAND_QUANTITIES ,
-
APPS.GML_REQIMPORT_GRP SQL Statements
12.2.2
-
VIEW: INV.MTL_TXN_REQUEST_LINES#
12.2.2
-
VIEW: INV.MTL_RESERVATIONS#
12.2.2
-
View: MTL_ONHAND_QUANTITIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_QUANTITIES, object_name:MTL_ONHAND_QUANTITIES, status:VALID, product: INV - Inventory , description: View of items owned, planned and physically belonging to the same inventory organization , implementation_dba_data: APPS.MTL_ONHAND_QUANTITIES ,
-
VIEW: APPS.MTL_ONHAND_QUANTITIES
12.1.1
-
View: MTL_GRADE_CHANGE_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_GRADE_CHANGE_ERV, object_name:MTL_GRADE_CHANGE_ERV, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_GRADE_CHANGE_ERV ,
-
View: MTL_GRADE_CHANGE_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_GRADE_CHANGE_ERV, object_name:MTL_GRADE_CHANGE_ERV, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_GRADE_CHANGE_ERV ,
-
VIEW: APPS.WSH_PICK_SLIP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PICK_SLIP_V, object_name:WSH_PICK_SLIP_V, status:VALID,
-
View: MTL_ONHAND_LOT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_LOT_V, object_name:MTL_ONHAND_LOT_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ONHAND_LOT_V ,
-
VIEW: APPS.WSH_PICK_SLIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PICK_SLIP_V, object_name:WSH_PICK_SLIP_V, status:VALID,
-
View: GMF_XLA_LC_ADJS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMF.GMF_XLA_LC_ADJS_V, object_name:GMF_XLA_LC_ADJS_V, status:VALID, product: GMF - Process Manufacturing Financials , description: SLA LC Adjustments view, used to display LC adjustments information in accounting events screen , implementation_dba_data: APPS.GMF_XLA_LC_ADJS_V ,
-
VIEW: APPS.MTL_ONHAND_QUANTITIES
12.2.2
-
View: MTL_LOT_ONHAND_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_LOT_ONHAND_SUM_V, object_name:MTL_LOT_ONHAND_SUM_V, status:VALID, product: INV - Inventory , description: The view is used to get total onhand of a lot number. , implementation_dba_data: APPS.MTL_LOT_ONHAND_SUM_V ,
-
View: OE_LINES_VIEW_RETURNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINES_VIEW_RETURNS_V, object_name:OE_LINES_VIEW_RETURNS_V, status:VALID, product: ONT - Order Management , description: No longer used , implementation_dba_data: APPS.OE_LINES_VIEW_RETURNS_V ,
-
VIEW: APPS.MTL_GRADE_CHANGE_ERV
12.2.2
-
PACKAGE BODY: APPS.INV_RCV_CACHE
12.1.1
-
View: MTL_ONHAND_LOT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_LOT_V, object_name:MTL_ONHAND_LOT_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ONHAND_LOT_V ,
-
PACKAGE BODY: APPS.INV_RCV_CACHE
12.2.2