Search Results qp_customer_items_v
Overview
QP_CUSTOMER_ITEMS_V is a PL/SQL view owned by the APPS schema within the QP (Advanced Pricing) module of Oracle E-Business Suite. It exposes customer item details and is referenced by the Pricing Agreements form, where it provides the cross-reference between a customer's own item numbering and the internal Oracle inventory item definition. In ETRM 12.1.1 and 12.2.2 the object carries a VALID status, confirming it remains an active, supported dictionary artifact in both releases.
From a reporting and integration standpoint, the view presents a denormalized, human-readable join between customer item cross-references, the inventory item master, and customer master data. Because it flattens these relationships into a single queryable structure, it is well suited to ad-hoc reporting, custom concurrent programs, and inbound/outbound interface logic where an external system must reconcile a customer-facing part number to an internal inventory item. The view is constrained by the QP_ORGANIZATION_ID profile option, so it is inherently single-organization in scope, returning only items belonging to the organization currently set in that profile.
Underlying Base Objects
The documented base objects underlying the view are:
- MTL_CUSTOMER_ITEM_XREFS (referenced via a SYNONYM) — the cross-reference table linking a customer item to an internal inventory item. It supplies the join key between customer item and inventory item.
- MTL_CUSTOMER_ITEMS_ALL_V (VIEW) — customer item header and address information, providing the customer item number, description, customer identifier, category, and address details.
- MTL_SYSTEM_ITEMS_VL (VIEW) — the inventory item master view, supplying the inventory item identifier, concatenated segments, description, and organization identifier.
- ARP_ADDR_PKG (PACKAGE) and QP_UTIL (PACKAGE) — supporting packages referenced in the definition (for example, address handling and pricing utilities).
The join logic links CITEMSV.CUSTOMER_ITEM_ID to CXREF.CUSTOMER_ITEM_ID and CXREF.INVENTORY_ITEM_ID to SITEMS.INVENTORY_ITEM_ID, restricting SITEMS.ORGANIZATION_ID to the value returned by FND_PROFILE.VALUE('QP_ORGANIZATION_ID').
Key Columns
- CUSTOMER_ITEM_NUMBER / CUSTOMER_ITEM_ID — the customer's own item number and its surrogate identifier.
- ITEM_DESCRIPTION — derived via NVL of the customer item description and the internal inventory item description.
- INVENTORY_ITEM_ID / INVENTORY_ITEM — the internal inventory item identifier and its concatenated segment representation.
- SOLD_TO_ORG_ID — the customer identifier associated with the cross-reference.
- ORGANIZATION_ID — the inventory organization of the internal item.
- CUSTOMER_CATEGORY — the customer category assigned to the item relationship.
- ADDRESS_ID / ADDRESS — the customer address identifier and a SUBSTR-limited (400 character) concatenated address.
Common Use Cases and Queries
Typical scenarios include reconciling customer part numbers against the internal item master, populating pricing agreement line defaults, and validating cross-reference data during order import. A representative query follows:
SELECT customer_item, inventory_item, item_description, sold_to_org_id FROM apps.qp_customer_items_v WHERE inventory_item = :item_number;
Because the view is organization-scoped through QP_ORGANIZATION_ID, callers should confirm the profile is initialized for the current session before relying on results.
-
View: QP_CUSTOMER_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_CUSTOMER_ITEMS_V, object_name:QP_CUSTOMER_ITEMS_V, status:VALID, product: QP - Advanced Pricing , description: Customer item details. Used in the Pricing Agreements form. , implementation_dba_data: APPS.QP_CUSTOMER_ITEMS_V ,
-
View: QP_CUSTOMER_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_CUSTOMER_ITEMS_V, object_name:QP_CUSTOMER_ITEMS_V, status:VALID, product: QP - Advanced Pricing , description: Customer item details. Used in the Pricing Agreements form. , implementation_dba_data: APPS.QP_CUSTOMER_ITEMS_V ,
-
PACKAGE: APPS.ARP_ADDR_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:ARP_ADDR_PKG, status:VALID,
-
PACKAGE: APPS.ARP_ADDR_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:ARP_ADDR_PKG, status:VALID,
-
VIEW: APPS.QP_CUSTOMER_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_CUSTOMER_ITEMS_V, object_name:QP_CUSTOMER_ITEMS_V, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.QP_CUSTOMER_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QP.QP_CUSTOMER_ITEMS_V, object_name:QP_CUSTOMER_ITEMS_V, status:VALID,
-
SYNONYM: APPS.MTL_CUSTOMER_ITEM_XREFS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_CUSTOMER_ITEM_XREFS, 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: APPS.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,
-
VIEW: APPS.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,
-
PACKAGE: APPS.QP_UTIL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:QP_UTIL, status:VALID,
-
PACKAGE: APPS.QP_UTIL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:QP_UTIL, 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,
-
eTRM - QP Tables and Views
12.1.1
description: This table stores information about which workers handle which list_lines, headers, formulas or price adjustments at the time of upgrade. ,
-
eTRM - QP Tables and Views
12.2.2
description: This table stores information about which workers handle which list_lines, headers, formulas or price adjustments at the time of upgrade. ,
-
eTRM - INV Tables and Views
12.2.2
-
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 - QP Tables and Views
12.2.2
description: This table stores information about which workers handle which list_lines, headers, formulas or price adjustments at the time of upgrade. ,
-
eTRM - QP Tables and Views
12.1.1
description: This table stores information about which workers handle which list_lines, headers, formulas or price adjustments at the time of upgrade. ,
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.2.2