Search Results mtl_onhand_items_v
Overview
MTL_ONHAND_ITEMS_V is an Oracle E-Business Suite inventory reporting view owned by the APPS schema and registered under the INV – Inventory product. In the ETRM metadata it carries the functional description "10SC ONLY", indicating that the object was created for a specific, narrowly scoped requirement rather than as a general-purpose inventory interface. It is a valid object in both the 12.1.1 and 12.2.2 codelines, but it is not part of the standard documented inventory API surface, and Oracle does not publish it as a supported integration point.
The view presents a summarized, organization-level quantity-on-hand picture for each inventory item. Its distinguishing characteristic is that it collapses the detailed on-hand records held at subinventory, locator, lot, and serial level into one aggregated row per organization/item combination, while simultaneously denormalizing item description, unit of measure, organization code and name, and the item's control attributes (revision, locator, lot, and serial control). This makes it suitable for lightweight reporting or lookup scenarios where the caller needs a total quantity and the item's control characteristics without navigating the full inventory table hierarchy.
Underlying Base Objects
The view text joins four principal sources. MTL_ONHAND_QUANTITIES_DETAIL supplies the transaction quantity that is summed to produce the total on-hand figure. MTL_SYSTEM_ITEMS_VL supplies the item's padded concatenated segments, description, primary unit of measure, and the four control-code columns. MTL_PARAMETERS supplies the organization code, and HR_ORGANIZATION_UNITS supplies the organization name. The documented referenced base objects for the 12.2.2 metadata are HR_GENERAL (package), HR_ORGANIZATION_UNITS (view), HR_SECURITY (package), MTL_ONHAND_QUANTITIES_DETAIL (synonym), MTL_PARAMETERS (synonym), and MTL_SYSTEM_ITEMS_VL (view).
The HR_SECURITY and HR_GENERAL references are significant: because the view touches HR_ORGANIZATION_UNITS, it inherits the organization-level security model enforced by those packages. Query results are therefore filtered by the accessing user's organization security profile, so a user restricted to one inventory organization will not see quantities for others.
Key Columns
- ORGANIZATION_ID – Inventory organization identifier; part of the aggregation grouping.
- INVENTORY_ITEM_ID – Internal item identifier; the other grouping key.
- PADDED_CONCATENATED_SEGMENTS – The item's concatenated key flexfield segments, padded for concatenation.
- TOTAL_QOH – Sum of PRIMARY_TRANSACTION_QUANTITY across all on-hand detail records for the item/organization.
- ITEM_DESCRIPTION – Item description from MTL_SYSTEM_ITEMS_VL.
- PRIMARY_UOM_CODE – Primary unit of measure for the item.
- ORGANIZATION_CODE / ORGANIZATION_NAME – Organization short code and descriptive name.
- ITEM_REV_CONTROL, ITEM_LOCATOR_CONTROL, ITEM_LOT_CONTROL, ITEM_SERIAL_CONTROL – Control codes indicating whether the item is revision-, locator-, lot-, or serial-controlled.
Common Use Cases and Queries
Typical usage is ad hoc reporting: listing total on-hand by item for an organization, or joining the view to item master data for a control-attribute-aware inventory listing.
- Total on-hand for a given item across all organizations the user can access.
- Organization-wide on-hand inventory listing with description and UOM for a simple stock report.
- Identifying items with on-hand quantity where lot, serial, or locator control is enabled, to plan cycle counts.
Sample query:
SELECT organization_code, padded_concatenated_segments, item_description, primary_uom_code, total_qoh
FROM apps.mtl_onhand_items_v
WHERE organization_id = :p_org_id
AND total_qoh > 0
ORDER BY padded_concatenated_segments;
Because the object is marked "10SC ONLY" and is unsupported, it should be treated as a read-only convenience view for reporting, not as a foundation for custom application logic or interfaces.
-
View: MTL_ONHAND_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_ITEMS_V, object_name:MTL_ONHAND_ITEMS_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ONHAND_ITEMS_V ,
-
View: MTL_ONHAND_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_ITEMS_V, object_name:MTL_ONHAND_ITEMS_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ONHAND_ITEMS_V ,
-
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: ICX - Oracle iProcurement , description: Item Availability by Organization View , 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: ICX - Oracle iProcurement , description: Item Availability by Organization View , implementation_dba_data: APPS.ICX_MTL_DEMAND_SUMMARY_V ,
-
VIEW: APPS.MTL_ONHAND_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_ITEMS_V, object_name:MTL_ONHAND_ITEMS_V, status:VALID,
-
PACKAGE BODY: APPS.ASO_ATP_INT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_ATP_INT, status:VALID,
-
PACKAGE BODY: APPS.ASO_ATP_INT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_ATP_INT, status:VALID,
-
VIEW: APPS.MTL_ONHAND_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ONHAND_ITEMS_V, object_name:MTL_ONHAND_ITEMS_V, status:VALID,
-
SYNONYM: APPS.MTL_ONHAND_QUANTITIES_DETAIL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_ONHAND_QUANTITIES_DETAIL, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.MTL_ONHAND_QUANTITIES_DETAIL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_ONHAND_QUANTITIES_DETAIL, status:VALID,
-
APPS.ASO_ATP_INT SQL Statements
12.2.2
-
APPS.ASO_ATP_INT SQL Statements
12.1.1
-
APPS.ASO_ATP_INT dependencies on MTL_ONHAND_ITEMS_V
12.1.1
-
APPS.ASO_ATP_INT dependencies on MTL_ONHAND_ITEMS_V
12.2.2
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.HR_ORGANIZATION_UNITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ORGANIZATION_UNITS, object_name:HR_ORGANIZATION_UNITS, status:VALID,
-
VIEW: APPS.HR_ORGANIZATION_UNITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ORGANIZATION_UNITS, object_name:HR_ORGANIZATION_UNITS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE BODY: APPS.ASO_ATP_INT
12.2.2
-
PACKAGE BODY: APPS.ASO_ATP_INT
12.1.1
-
eTRM - INV Tables and Views
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - INV Tables and Views
12.2.2
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.2.2
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,