Search Results primary_unit_of_measure
Overview
ICX_MTL_DEMAND_SUMMARY_V is a database view owned by the APPS schema in Oracle E-Business Suite, defined within the ICX product family (Oracle iProcurement). Its documented purpose is to present Item Availability by Organization, aggregating on-hand balances and outstanding demand at the inventory item and organization level. The view serves as the data source for iProcurement availability checks and related requisition-time stock validation logic, allowing requisitioners to see whether an item is available, reserved, or committed across organizations before an order is placed.
The view is central to the search term completed_quantity, which is referenced repeatedly in the view definition via MTL_DEMAND.COMPLETED_QUANTITY. This column records the portion of a demand line already fulfilled, and the view subtracts it from LINE_ITEM_QUANTITY to derive remaining open demand. Because completed quantity is dynamic, the view reflects current open commitments rather than historical reservations.
Underlying Base Objects
Per the ETRM metadata for 12.2.2, the view is defined over the following objects, accessed through synonyms in the APPS schema:
- MTL_DEMAND — the primary demand driver; supplies
LINE_ITEM_QUANTITY,COMPLETED_QUANTITY, andRESERVATION_TYPE. - MTL_ONHAND_QUANTITIES_DETAIL — source of on-hand quantity aggregation (via the MTL_ONHAND_ITEMS_V construct in the view text).
- MTL_RESERVATIONS — reservation context for demand lines.
- MTL_PARAMETERS and MTL_SYSTEM_ITEMS_KFV — organization parameters and item key-flexfield descriptions.
- HR_ORGANIZATION_UNITS, HR_GENERAL, and HR_SECURITY — organization naming and security restrictions.
- OE_ORDER_LINES_ALL — order-line linkage for demand originating in Order Management.
- INV_DECIMALS_PUB — quantity rounding and UOM decimal handling.
The demand aggregation filters on MD.PARENT_DEMAND_ID IS NOT NULL, ensuring only child demand records are included, and retains rows where either quantity or completed quantity is greater than zero.
Key Columns
- ORGANIZATION_ID — inventory organization identifier.
- INVENTORY_ITEM_ID — item identifier.
- CONCATENATED_SEGMENTS and DESCRIPTION — item flexfield and description.
- PRIMARY_UNIT_OF_MEASURE — item UOM.
- ORGANIZATION_CODE and NAME — organization code and name.
- TOTAL_QOH — total quantity on hand, NVL'd to zero.
- Reservation-type buckets — three SUM(DECODE(...)) expressions computing open demand for reservation types 1, 2, and 3, each expressed as
LINE_ITEM_QUANTITY − COMPLETED_QUANTITY. - Net availability — TOTAL_QOH minus the relevant reservation buckets.
The completed_quantity subtraction is the mechanism that converts gross demand into open (unfulfilled) demand; without it, fully shipped or received lines would continue to appear as outstanding.
Common Use Cases and Queries
Typical scenarios include iProcurement availability display, requisition validation, and custom inventory reporting.
SELECT organization_code,
concatenated_segments,
description,
total_qoh,
primary_unit_of_measure
FROM apps.icx_mtl_demand_summary_v
WHERE inventory_item_id = :item_id
AND organization_id = :org_id;
Analysts investigating reserved versus available stock join the result to MTL_DEMAND to reconcile completed_quantity against open lines. Because the view applies HR security, queries executed by restricted responsibilities return only authorized organizations, making it suitable for multi-org sourcing decisions and requisition-time availability checks.
-
View: ICX_MTL_DEMAND_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_MTL_DEMAND_SUMMARY_V INV.ICX_MTL_DEMAND_SUMMARY_V, object_name:ICX_MTL_DEMAND_SUMMARY_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.ICX_MTL_DEMAND_SUMMARY_V ,
-
View: ICX_MTL_DEMAND_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_MTL_DEMAND_SUMMARY_V INV.ICX_MTL_DEMAND_SUMMARY_V, object_name:ICX_MTL_DEMAND_SUMMARY_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.ICX_MTL_DEMAND_SUMMARY_V ,
-
View: MTL_SYSTEM_ITEMS_ER4_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_ER4_V, object_name:MTL_SYSTEM_ITEMS_ER4_V, status:VALID, product: INV - Inventory , description: ERES : View to support ERES framework for Items Organization Assignment , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_ER4_V ,
-
View: MTL_SYSTEM_ITEMS_ER4_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_ER4_V, object_name:MTL_SYSTEM_ITEMS_ER4_V, status:VALID, product: INV - Inventory , description: ERES : View to support ERES framework for Items Organization Assignment , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_ER4_V ,
-
View: MTL_ORG_ASSIGN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ORG_ASSIGN_V, object_name:MTL_ORG_ASSIGN_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ORG_ASSIGN_V ,
-
View: MTL_ORG_ASSIGN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ORG_ASSIGN_V, object_name:MTL_ORG_ASSIGN_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ORG_ASSIGN_V ,
-
View: MTL_UOM_CONVERSIONS_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UOM_CONVERSIONS_VIEW, object_name:MTL_UOM_CONVERSIONS_VIEW, status:VALID, product: INV - Inventory , description: View giving unit of measure conversion rates between the primary unit of measure and another unit of measure , implementation_dba_data: APPS.MTL_UOM_CONVERSIONS_VIEW ,
-
View: MTL_UOM_CONVERSIONS_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_UOM_CONVERSIONS_VIEW, object_name:MTL_UOM_CONVERSIONS_VIEW, status:VALID, product: INV - Inventory , description: View giving unit of measure conversion rates between the primary unit of measure and another unit of measure , implementation_dba_data: APPS.MTL_UOM_CONVERSIONS_VIEW ,
-
View: MTL_ITEM_FLEXFIELDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_FLEXFIELDS, object_name:MTL_ITEM_FLEXFIELDS, status:VALID, product: INV - Inventory , description: This view is based on the key flexfield view MTL_SYSTEM_ITEMS_B_KFV. It contains columns with padded and unpadded concatenated segments of an item number. , implementation_dba_data: APPS.MTL_ITEM_FLEXFIELDS ,
-
View: MTL_SYSTEM_ITEMS_B_KFV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_B_KFV, object_name:MTL_SYSTEM_ITEMS_B_KFV, status:VALID, product: INV - Inventory , description: System Items Key Flexfield View , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_B_KFV ,
-
View: MTL_ITEM_FLEXFIELDS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ITEM_FLEXFIELDS, object_name:MTL_ITEM_FLEXFIELDS, status:VALID, product: INV - Inventory , description: This view is based on the key flexfield view MTL_SYSTEM_ITEMS_B_KFV. It contains columns with padded and unpadded concatenated segments of an item number. , implementation_dba_data: APPS.MTL_ITEM_FLEXFIELDS ,
-
View: MTL_SYSTEM_ITEMS_B_KFV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_B_KFV, object_name:MTL_SYSTEM_ITEMS_B_KFV, status:VALID, product: INV - Inventory , description: System Items Key Flexfield View , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_B_KFV ,
-
View: INVFV_ITEMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_ITEMS, object_name:INVFV_ITEMS, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.INVFV_ITEMS ,
-
View: INVFV_ITEMS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_ITEMS, object_name:INVFV_ITEMS, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.INVFV_ITEMS ,
-
View: INVBV_ITEMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_ITEMS, object_name:INVBV_ITEMS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVBV_ITEMS ,
-
View: INVBV_ORGANIZATION_ITEMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_ORGANIZATION_ITEMS, object_name:INVBV_ORGANIZATION_ITEMS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVBV_ORGANIZATION_ITEMS ,
-
View: INVBV_ITEMS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_ITEMS, object_name:INVBV_ITEMS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVBV_ITEMS ,
-
View: INVBV_ORGANIZATION_ITEMS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_ORGANIZATION_ITEMS, object_name:INVBV_ORGANIZATION_ITEMS, status:VALID, product: INV - Inventory , description: - Retrofitted , implementation_dba_data: APPS.INVBV_ORGANIZATION_ITEMS ,
-
View: MTL_SYSTEM_ITEMS_ER1_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_ER1_V, object_name:MTL_SYSTEM_ITEMS_ER1_V, status:VALID, product: INV - Inventory , description: ERES : View to support ERES framework for Items , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_ER1_V ,
-
View: MTL_SYSTEM_ITEMS_ER1_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_ER1_V, object_name:MTL_SYSTEM_ITEMS_ER1_V, status:VALID, product: INV - Inventory , description: ERES : View to support ERES framework for Items , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_ER1_V ,
-
View: INVFV_ORGANIZATION_ITEMS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_ORGANIZATION_ITEMS, object_name:INVFV_ORGANIZATION_ITEMS, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.INVFV_ORGANIZATION_ITEMS ,
-
View: INVFV_ORGANIZATION_ITEMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_ORGANIZATION_ITEMS, object_name:INVFV_ORGANIZATION_ITEMS, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.INVFV_ORGANIZATION_ITEMS ,
-
View: MTL_SYSTEM_ITEMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_VL, object_name:MTL_SYSTEM_ITEMS_VL, status:VALID, product: INV - Inventory , description: System Items multilingual view with concatenated segments column , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_VL ,
-
View: MTL_CLIENT_ITEMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CLIENT_ITEMS_VL, object_name:MTL_CLIENT_ITEMS_VL, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_CLIENT_ITEMS_VL ,
-
View: MTL_SYSTEM_ITEMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_VL, object_name:MTL_SYSTEM_ITEMS_VL, status:VALID, product: INV - Inventory , description: System Items multilingual view with concatenated segments column , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_VL ,
-
View: MTL_SYSTEM_ITEMS_FVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_FVL, object_name:MTL_SYSTEM_ITEMS_FVL, status:VALID, product: INV - Inventory , description: Base view for the Define System Items (INVIDITM) form MTL_SYSTEM_ITEMS block. This view is MLS enabled. , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_FVL ,
-
View: MTL_SYSTEM_ITEMS_FVL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_FVL, object_name:MTL_SYSTEM_ITEMS_FVL, status:VALID, product: INV - Inventory , description: Base view for the Define System Items (INVIDITM) form MTL_SYSTEM_ITEMS block. This view is MLS enabled. , implementation_dba_data: APPS.MTL_SYSTEM_ITEMS_FVL ,
-
Lookup Type: INV_ITEM_ATTRIBUTES
12.2.2
product: INV - Inventory , meaning: Item Attributes , description: Item Attributes ,
-
Lookup Type: INV_ITEM_ATTRIBUTES
12.1.1
product: INV - Inventory , meaning: Item Attributes , description: Item Attributes ,