Search Results mtl_customer_item_xrefs_v
Overview
MTL_CUSTOMER_ITEM_XREFS_V is an APPS-owned database view in the Oracle E-Business Suite Inventory (INV) module, documented with the description "10SC ONLY." It presents a denormalized, reporting-oriented representation of the customer item cross-reference relationship held in MTL_CUSTOMER_ITEM_XREFS, joined to the customer item definition in MTL_CUSTOMER_ITEMS and enriched with customer, address, item, and lookup attributes. The view answers the core business question of which internal inventory item corresponds to a given customer item number for a specific customer, master organization, and rank or preference sequence.
Its role is primarily reporting and integration rather than transactional processing. Because it resolves internal item identifiers into concatenated segment values and descriptions, and resolves customer identifiers into party and account numbers, it is well suited to interfaces, extracts, and operational reports where consumers require human-readable cross-reference data without performing the multi-table joins themselves. The ETRM metadata records the object as VALID in the APPS schema under ETRM 12.2.2, and the same view is present in 12.1.1 environments.
Underlying Base Objects
The view is defined over the MTL_CUSTOMER_ITEMS and MTL_CUSTOMER_ITEM_XREFS base tables, with supporting joins to item and party master data. The documented referenced base objects are: ARP_ADDR_PKG (PACKAGE), AR_LOOKUPS (VIEW), FND_TERRITORIES_VL (VIEW), HZ_CUST_ACCOUNTS (SYNONYM), HZ_CUST_ACCT_SITES_ALL (SYNONYM), HZ_LOCATIONS (SYNONYM), HZ_PARTIES (SYNONYM), HZ_PARTY_SITES (SYNONYM), MFG_LOOKUPS (VIEW), MTL_CUSTOMER_ITEMS (SYNONYM), MTL_CUSTOMER_ITEM_XREFS (SYNONYM), MTL_SYSTEM_ITEMS_B_KFV (VIEW), and MTL_SYSTEM_ITEMS_TL (SYNONYM).
- MTL_CUSTOMER_ITEM_XREFS is the driving table; its ROWID is exposed as ROW_ID and it supplies the customer item, inventory item, master organization, preference rank, inactive flag, and the WHO columns.
- MTL_CUSTOMER_ITEMS supplies the customer item number, description, customer category code, customer identifier, item definition level, and address identifier.
- MTL_SYSTEM_ITEMS_B_KFV and MTL_SYSTEM_ITEMS_TL resolve the internal item to concatenated segments and a description.
- HZ_PARTIES, HZ_CUST_ACCOUNTS, HZ_CUST_ACCT_SITES_ALL, HZ_PARTY_SITES, and HZ_LOCATIONS supply customer name, account number, status, and address components; ARP_ADDR_PKG.FORMAT_ADDRESS produces the concatenated address.
- AR_LOOKUPS resolves the customer category code to a meaning, while MFG_LOOKUPS resolves the item definition level.
Key Columns
- CUSTOMER_ITEM_ID / CUSTOMER_ITEM_NUMBER / CUSTOMER_ITEM_DESC — customer item identity and description.
- INVENTORY_ITEM_ID / CONCATENATED_SEGMENTS / ITEM_DESCRIPTION — internal item identity and its readable key flexfield and description.
- CUSTOMER_ID / CUSTOMER_NAME / CUSTOMER_NUMBER — customer party and account identifiers.
- MASTER_ORGANIZATION_ID — organization context of the cross-reference.
- RANK — the preference number, aliasing MTL_CUSTOMER_ITEM_XREFS.PREFERENCE_NUMBER.
- INACTIVE_FLAG, STATUS, ENABLED_FLAG, START_DATE_ACTIVE, END_DATE_ACTIVE — active/inactive controls across the cross-reference, account, and lookup levels.
- ITEM_LEVEL, CUSTOMER_CATEGORY, CUSTOMER_PROSPECT_CODE, CUSTOMER_CATEGORY_CODE — classification attributes derived from MFG_LOOKUPS, AR_LOOKUPS, and the customer item record.
- ADDRESS1–POSTAL_CODE, COUNTRY, TERRITORY_SHORT_NAME, CONCATENATED_ADDRESS — customer address detail, with the formatted address generated by ARP_ADDR_PKG.
- ATTRIBUTE1–ATTRIBUTE15, LAST_UPDATE_DATE, CREATION_DATE, REQUEST_ID, PROGRAM_ID — descriptive flexfield and audit/concurrent program columns.
Common Use Cases and Queries
Typical scenarios include customer item cross-reference reports, order-to-inventory mapping extracts, and data validation before loading or maintaining cross-references.
- List active cross-references for a customer, resolving the internal item.
- Identify the preferred (lowest rank) customer item for an internal item.
- Extract cross-references with full customer name and address for integration feeds.
Sample query — active cross-references for a customer:
SELECT customer_item_number, customer_item_desc, concatenated_segments,
item_description, rank, customer_name, customer_number, concatenated_address
FROM apps.mtl_customer_item_xrefs_v
WHERE customer_number = :p_customer_number
AND NVL(inactive_flag,'N') = 'N'
ORDER BY customer_item_number, rank;
Sample query — preferred cross-reference per internal item:
SELECT inventory_item_id, concatenated_segments, customer_number,
customer_item_number, rank
FROM apps.mtl_customer_item_xrefs_v x
WHERE rank = (SELECT MIN(rank) FROM apps.mtl_customer_item_xrefs_v y
WHERE y.inventory_item_id = x.inventory_item_id
AND y.customer_id = x.customer_id
AND NVL(y.inactive_flag,'N') = 'N');
As the view is documented as "10SC ONLY," consumption should be confirmed against the target release before being embedded in custom code, and the view should be treated as a read-only reporting object rather than a maintenance interface.
-
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: 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 ,
-
APPS.INV_INVIRCXR_XMLP_PKG SQL Statements
12.2.2
-
VIEW: APPS.CLN_ITEMMST_ITEMHEADER_V
12.2.2
-
APPS.INV_INVIRCXR_XMLP_PKG SQL Statements
12.1.1
-
VIEW: APPS.CLN_ITEMMST_ITEMHEADER_V
12.1.1
-
PACKAGE: APPS.ARP_ADDR_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:ARP_ADDR_PKG, status:VALID,
-
PACKAGE: APPS.ARP_ADDR_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:ARP_ADDR_PKG, status:VALID,
-
SYNONYM: APPS.HZ_LOC_ASSIGNMENTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_LOC_ASSIGNMENTS, status:VALID,
-
SYNONYM: APPS.MTL_CUSTOMER_ITEM_XREFS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_CUSTOMER_ITEM_XREFS, status:VALID,
-
View: CLN_ITEMMST_ITEMHEADER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_ITEMMST_ITEMHEADER_V, object_name:CLN_ITEMMST_ITEMHEADER_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View for the Header section of the Sync Item XML message , implementation_dba_data: APPS.CLN_ITEMMST_ITEMHEADER_V ,
-
SYNONYM: APPS.MTL_CUSTOMER_ITEM_XREFS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_CUSTOMER_ITEM_XREFS, status:VALID,
-
View: CLN_ITEMMST_ITEMHEADER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_ITEMMST_ITEMHEADER_V, object_name:CLN_ITEMMST_ITEMHEADER_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View for the Header section of the Sync Item XML message , implementation_dba_data: APPS.CLN_ITEMMST_ITEMHEADER_V ,
-
PACKAGE BODY: APPS.INV_INVIRCXR_XMLP_PKG
12.1.1
-
PACKAGE BODY: APPS.INV_INVIRCXR_XMLP_PKG
12.2.2
-
SYNONYM: APPS.MTL_CUSTOMER_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_CUSTOMER_ITEMS, status:VALID,
-
SYNONYM: APPS.MTL_CUSTOMER_ITEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_CUSTOMER_ITEMS, status:VALID,
-
VIEW: APPS.CLN_ITEMMST_ITEMHEADER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_ITEMMST_ITEMHEADER_V, object_name:CLN_ITEMMST_ITEMHEADER_V, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.CLN_ITEMMST_ITEMHEADER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_ITEMMST_ITEMHEADER_V, object_name:CLN_ITEMMST_ITEMHEADER_V, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS_TL, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS_TL, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.FND_TERRITORIES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_TERRITORIES_VL, object_name:FND_TERRITORIES_VL, status:VALID,
-
VIEW: APPS.FND_TERRITORIES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_TERRITORIES_VL, object_name:FND_TERRITORIES_VL, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCT_SITES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCT_SITES_ALL, status:VALID,
-
VIEW: APPS.AR_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_LOOKUPS, object_name:AR_LOOKUPS, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCT_SITES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCT_SITES_ALL, status:VALID,
-
VIEW: APPS.AR_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_LOOKUPS, object_name:AR_LOOKUPS, status:VALID,
-
VIEW: APPS.MFG_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MFG_LOOKUPS, object_name:MFG_LOOKUPS, status:VALID,
-
VIEW: APPS.MFG_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MFG_LOOKUPS, object_name:MFG_LOOKUPS, status:VALID,
-
SYNONYM: APPS.HZ_LOCATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_LOCATIONS, status:VALID,
-
SYNONYM: APPS.HZ_LOCATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_LOCATIONS, status:VALID,
-
SYNONYM: APPS.HZ_PARTY_SITES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTY_SITES, status:VALID,
-
eTRM - CLN Tables and Views
12.1.1
description: M4R 7B1 Message staging table ,
-
eTRM - CLN Tables and Views
12.2.2
description: M4R 7B1 Message staging table ,
-
SYNONYM: APPS.HZ_PARTY_SITES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTY_SITES, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCOUNTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNTS, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCOUNTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNTS, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
SYNONYM: APPS.HZ_PARTIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
APPS.BOM_DIAGUNITTEST_IBRDATA SQL Statements
12.1.1
-
SYNONYM: APPS.HZ_PARTIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
APPS.BOM_DIAGUNITTEST_IBRDATA SQL Statements
12.2.2
-
eTRM - CLN Tables and Views
12.1.1
description: M4R 7B1 Message staging table ,
-
eTRM - CLN Tables and Views
12.2.2
description: M4R 7B1 Message staging table ,
-
eTRM - INV Tables and Views
12.1.1