Search Results inv_item_definition_level
Overview
APPS.OE_ITEMS_V is a reporting and integration view in Oracle E-Business Suite (validated across 12.1.1 and 12.2.2) that presents the relationship between customer-defined item numbers and the corresponding internal Oracle Inventory items. It consolidates customer item definitions, customer item cross-references, inventory item master attributes, shipping site context, and customer address information into a single flattened result set. The view is central to order management and order-to-cash reporting because it allows users to trace how a customer's own item number (and description) maps to an internal inventory item and its cross-reference rank.
The view is particularly significant for the search term inv_item_definition_level, which appears as the column ITEM_DEFINITION_LEVEL. This value is derived from the FND_LOOKUP_VALUES_VL lookup type INV_ITEM_DEFINITION_LEVEL, joined to MTL_CUSTOMER_ITEMS.ITEM_DEFINITION_LEVEL. It indicates the granularity at which a customer item is defined—for example, at the customer level, customer site level, or inventory item level—and is therefore critical for interpreting how a customer item number is scoped.
Underlying Base Objects
The view is owned by APPS and is defined over a UNION ALL of at least two query branches. The documented base objects include:
MTL_CUSTOMER_ITEMS— the primary source of customer item number, ID, description, customer ID, and definition level.MTL_CUSTOMER_ITEM_XREFS— provides the cross-reference between customer items, internal inventory items, preference rank, and master organization.MTL_SYSTEM_ITEMS_B_KFV— supplies the inventory item ID and concatenated item segments (the internal item identifier).MTL_SYSTEM_ITEMS_TL— used in the UNION ALL branch to supply the translated item description.MTL_CROSS_REFERENCESandMTL_CROSS_REFERENCE_TYPES— support cross-reference metadata in the second branch.MTL_PARAMETERS— joins on organization and master organization to enforce the master organization context.HZ_CUST_SITE_USES_ALL,HZ_CUST_ACCT_SITES_ALL,HZ_PARTY_SITES,HZ_LOCATIONS— together build the ship-to site and address context.AR_LOOKUPSandFND_LOOKUP_VALUES_VL— provide lookup meanings for address category and, importantly, theINV_ITEM_DEFINITION_LEVELlookup.OE_SYS_PARAMETERS— package used viaoe_sys_parameters.Value('MASTER_ORGANIZATION_ID')to restrict results to the master organization.
Key Columns
ITEM/ITEM_ID— the customer item number and customer item ID fromMTL_CUSTOMER_ITEMS.ITEM_DESCRIPTION— customer item description; the view filters out rows where this is null.INVENTORY_ITEM_ID/INVENTORY_ITEM— the internal inventory item ID and concatenated segments.ITEM_IDENTIFIER_TYPE— literal'CUST', indicating a customer item identifier.SOLD_TO_ORG_ID— customer identifier from the customer item record.ORGANIZATION_ID— inventory organization context for the internal item.ITEM_STATUS/CROSS_REF_STATUS— decoded ACTIVE or INACTIVE status for the customer item and its cross-reference.Address/CUST_ADDRESS— assembled ship-to address, with formatting controlled by lookup codes.ITEM_DEFINITION_LEVEL— the decoded meaning of the customer item definition level lookup (INV_ITEM_DEFINITION_LEVEL).RANK— the cross-reference preference number fromMTL_CUSTOMER_ITEM_XREFS.
Common Use Cases and Queries
Typical scenarios include customer item cross-reference reporting, order entry validation of customer-to-inventory item mappings, and integration feeds that must resolve a customer part number to an internal item. The view is also used to audit items by definition level and ship-to context.
Sample query to identify inventory items by item definition level:
SELECT item,
item_description,
inventory_item,
item_definition_level,
item_status,
rank
FROM apps.oe_items_v
WHERE item_definition_level = 'CUSTOMER'
ORDER BY inventory_item, rank;
Sample query to find active cross-references for a sold-to organization:
SELECT inventory_item,
item,
cross_ref_status,
rank
FROM apps.oe_items_v
WHERE sold_to_org_id = :p_customer_id
AND cross_ref_status = 'ACTIVE'
ORDER BY inventory_item, rank;
-
Lookup Type: INV_ITEM_DEFINITION_LEVEL
12.1.1
product: INV - Inventory , meaning: INV ITEM DEFINITION LEVEL ,
-
Lookup Type: INV_ITEM_DEFINITION_LEVEL
12.2.2
product: INV - Inventory , meaning: INV ITEM DEFINITION LEVEL ,
-
VIEW: APPS.OE_ITEMS_V
12.2.2
-
VIEW: APPS.OE_ITEMS_V
12.1.1
-
VIEW: APPS.MTL_CUSTOMER_ITEMS_ALL_V
12.2.2
-
VIEW: APPS.MTL_CUSTOMER_ITEMS_ALL_V
12.1.1
-
VIEW: APPS.OE_RETURN_ITEMS_V
12.1.1
-
View: OE_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ITEMS_V, object_name:OE_ITEMS_V, status:VALID, product: ONT - Order Management , description: This view is union of inventory items, customer items and generic items. , implementation_dba_data: APPS.OE_ITEMS_V ,
-
VIEW: APPS.MTL_CUSTOMER_ITEM_XREFS_V
12.1.1
-
VIEW: APPS.MTL_CUSTOMER_ITEMS_ACTIVE_V
12.1.1
-
VIEW: APPS.MTL_CUSTOMER_ITEMS_ACTIVE_V
12.2.2
-
VIEW: APPS.MTL_CUSTOMER_ITEM_XREFS_V
12.2.2
-
View: OE_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ITEMS_V, object_name:OE_ITEMS_V, status:VALID, product: ONT - Order Management , description: This view is union of inventory items, customer items and generic items. , implementation_dba_data: APPS.OE_ITEMS_V ,
-
VIEW: APPS.OE_RETURN_ITEMS_V
12.2.2
-
View: OE_RETURN_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_RETURN_ITEMS_V, object_name:OE_RETURN_ITEMS_V, status:VALID, product: ONT - Order Management , description: Added a view for return items LOV. , implementation_dba_data: APPS.OE_RETURN_ITEMS_V ,
-
View: MTL_CUSTOMER_ITEM_XREFS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CUSTOMER_ITEM_XREFS_V, object_name:MTL_CUSTOMER_ITEM_XREFS_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_CUSTOMER_ITEM_XREFS_V ,
-
View: OE_RETURN_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_RETURN_ITEMS_V, object_name:OE_RETURN_ITEMS_V, status:VALID, product: ONT - Order Management , description: Added a view for return items LOV. , implementation_dba_data: APPS.OE_RETURN_ITEMS_V ,
-
View: MTL_CUSTOMER_ITEMS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CUSTOMER_ITEMS_ALL_V, object_name:MTL_CUSTOMER_ITEMS_ALL_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_CUSTOMER_ITEMS_ALL_V ,
-
View: MTL_CUSTOMER_ITEM_XREFS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CUSTOMER_ITEM_XREFS_V, object_name:MTL_CUSTOMER_ITEM_XREFS_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_CUSTOMER_ITEM_XREFS_V ,
-
View: MTL_CUSTOMER_ITEMS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CUSTOMER_ITEMS_ALL_V, object_name:MTL_CUSTOMER_ITEMS_ALL_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_CUSTOMER_ITEMS_ALL_V ,
-
View: MTL_CUSTOMER_ITEMS_ACTIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CUSTOMER_ITEMS_ACTIVE_V, object_name:MTL_CUSTOMER_ITEMS_ACTIVE_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_CUSTOMER_ITEMS_ACTIVE_V ,
-
VIEW: APPS.OE_ITEMS_MV#
12.2.2
-
View: MTL_CUSTOMER_ITEMS_ACTIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_CUSTOMER_ITEMS_ACTIVE_V, object_name:MTL_CUSTOMER_ITEMS_ACTIVE_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_CUSTOMER_ITEMS_ACTIVE_V ,
-
MATERIALIZED VIEW: APPS.OE_ITEMS_MV
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.CLN_SYNCITEM_PKG SQL Statements
12.2.2
-
APPS.CLN_SYNCITEM_PKG SQL Statements
12.1.1
-
APPS.QP_PRICE_BOOK_UTIL SQL Statements
12.1.1
-
APPS.INVCIINT dependencies on MFG_LOOKUPS
12.1.1
-
APPS.INVCIINT dependencies on MFG_LOOKUPS
12.2.2
-
APPS.INVCIINT SQL Statements
12.2.2
-
APPS.INVCIINT SQL Statements
12.1.1
-
APPS.QP_PRICE_BOOK_UTIL SQL Statements
12.2.2
-
APPS.CLN_SYNCITEM_PKG dependencies on MTL_ITEM_REVISIONS
12.2.2
-
APPS.CLN_SYNCITEM_PKG dependencies on MTL_ITEM_REVISIONS
12.1.1
-
PACKAGE BODY: APPS.CLN_SYNCITEM_PKG
12.2.2
-
PACKAGE BODY: APPS.CLN_SYNCITEM_PKG
12.1.1
-
PACKAGE BODY: APPS.QP_PRICE_BOOK_UTIL
12.1.1
-
PACKAGE BODY: APPS.INVCIINT
12.1.1
-
PACKAGE BODY: APPS.QP_PRICE_BOOK_UTIL
12.2.2
-
PACKAGE BODY: APPS.INVCIINT
12.2.2