Search Results supplier_item_pk
Overview
The view APPS.EDW_POA_SPIM_SPLRITEM_LCV is a data extraction view within the Oracle E-Business Suite Procurement and Spend analytics layer, associated with the Procurement Operations Analysis (POA) subject area of the Enterprise Data Warehouse (EDW). The suffix _LCV denotes a "Logical Conformed View" — a canonical, denormalized projection that presents procurement dimensions in a consistent format for downstream ETL, reporting, and analytics consumption. The view exposes a unified supplier item dimension by concatenating vendor, vendor site, and vendor product number attributes into surrogate key strings.
This view is commonly surfaced when searching for the identifier supplier_site_item_dp (supplier site item descriptive pointer), which is one of its key exposed columns. In Oracle EBS 12.1.1 and 12.2.2, this view supports supplier performance dashboards, spend analysis, and item-level sourcing intelligence by providing a stable, report-friendly representation of supplier product data drawn from the purchasing module.
Underlying Base Objects
The view is defined as an inline subquery joined across five base objects, then aggregated via an outer GROUP BY. The documented referenced objects are:
PO_HEADERS_ALL— purchase order headers, supplying header-level context and the vendor linkage.PO_VENDORS— the supplier master, supplyingVENDOR_NAMEandVENDOR_ID.PO_LINES_ALL— purchase order lines, supplyingVENDOR_PRODUCT_NUMand line-level dates.PO_VENDOR_SITES_ALL— supplier sites, supplyingVENDOR_SITE_CODE.EDW_LOCAL_INSTANCE— the EDW instance registry, supplying theINSTANCE_CODEused to identify the source EBS instance in multi-instance warehouse deployments.
The join path relates vendors to headers through VENDOR_ID, headers to lines through PO_HEADER_ID, and vendor sites to vendors through VENDOR_ID. Only lines with a non-null VENDOR_PRODUCT_NUM are retained.
Key Columns
SUPPLIER_ITEM_PK— composite surrogate key formed asvendor_name || '-' || vendor_site_code || '-' || vendor_product_num.SUPPLIER_SITE_ITEM_DP— descriptive pointer at the supplier-site-item grain; the column most often referenced by searches forsupplier_site_item_dp.SUPPLIER_ITEM_DP— descriptive pointer at the supplier-item grain (vendor plus product number, without site).ALL_FK— constant 'ALL' marker used as a conformed foreign key for "all" aggregate rollups.NAME— the vendor product number, serving as the item name.SUPPLIER_SITE_CODEandSUPPLIER_NAME— human-readable site and supplier identifiers.INSTANCE— the EBS source instance code.MAX(CREATION_DATE)andMAX(LAST_UPDATE_DATE)— aggregated audit timestamps;LAST_UPDATE_DATEis the greatest of site, vendor, and line update dates.USER_ATTRIBUTE1throughUSER_ATTRIBUTE5— placeholder flex attributes, returned as NULL in the base definition but available for extension.
Common Use Cases and Queries
This view is typically consumed to build supplier item dimensions for spend cubes and supplier scorecards, to reconcile supplier product numbers across purchase orders, and to drive cross-instance analytics in an EDW environment.
A representative query retrieves distinct supplier site items for a given supplier:
SELECT supplier_name, supplier_site_code, name, supplier_site_item_dp FROM apps.edw_poa_spim_splritem_lcv WHERE supplier_name = :p_supplier ORDER BY supplier_site_code, name;SELECT instance, COUNT(DISTINCT supplier_item_pk) FROM apps.edw_poa_spim_splritem_lcv GROUP BY instance;SELECT supplier_site_item_dp, MAX(last_update_date) FROM apps.edw_poa_spim_splritem_lcv GROUP BY supplier_site_item_dp;
Because the view performs aggregation and string concatenation, filter and join operations should target the descriptive pointer columns rather than the underlying base keys.
-
VIEW: APPS.EDW_POA_SPIM_SPLRITEM_LCV
12.1.1
-
APPS.EDW_SUPPLIER_ITEM_PKG SQL Statements
12.1.1
-
VIEW: APPS.EDW_POA_SPIM_SPLRITEM_LTC_IV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:POA.EDW_POA_SPIM_SPLRITEM_LTC_IV, object_name:EDW_POA_SPIM_SPLRITEM_LTC_IV, status:VALID,
-
View: EDW_POA_SPIM_SPLRITEM_LTC_IV
12.2.2
product: POA - Purchasing Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.EDW_POA_SPLRITEM_MPV
12.1.1
-
View: EDW_POA_SPIM_SPLRITEM_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.EDW_POA_SPIM_SPLRITEM_LCV, object_name:EDW_POA_SPIM_SPLRITEM_LCV, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.EDW_POA_SPIM_SPLRITEM_LCV ,
-
View: EDW_POA_SPIM_SPLRITEM_LCV
12.2.2
product: PO - Purchasing , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.EDW_POA_SPIM_SPLRITEM_LTC_IV
12.1.1
-
View: EDW_POA_SPIM_SPLRITEM_LTC_IV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:POA.EDW_POA_SPIM_SPLRITEM_LTC_IV, object_name:EDW_POA_SPIM_SPLRITEM_LTC_IV, status:VALID, product: POA - Purchasing Intelligence , implementation_dba_data: APPS.EDW_POA_SPIM_SPLRITEM_LTC_IV ,
-
APPS.EDW_POA_SPLRITEM_M_C SQL Statements
12.1.1
-
VIEW: APPS.EDW_POA_SPIM_SPLRITEM_FKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.EDW_POA_SPIM_SPLRITEM_FKV, object_name:EDW_POA_SPIM_SPLRITEM_FKV, status:VALID,
-
TABLE: POA.EDW_POA_SPIM_SPLRITEM_LTC
12.1.1
owner:POA, object_type:TABLE, fnd_design_data:POA.EDW_POA_SPIM_SPLRITEM_LTC, object_name:EDW_POA_SPIM_SPLRITEM_LTC, status:VALID,
-
VIEW: APPS.EDW_POA_SPIM_SPLRITEM_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.EDW_POA_SPIM_SPLRITEM_LCV, object_name:EDW_POA_SPIM_SPLRITEM_LCV, status:VALID,
-
TABLE: POA.EDW_POA_SPIM_SPLRITEM_LSTG
12.1.1
owner:POA, object_type:TABLE, fnd_design_data:POA.EDW_POA_SPIM_SPLRITEM_LSTG, object_name:EDW_POA_SPIM_SPLRITEM_LSTG, status:VALID,
-
PACKAGE BODY: APPS.EDW_SUPPLIER_ITEM_PKG
12.1.1
-
View: EDW_POA_SPLRITEM_MPV
12.2.2
product: PO - Purchasing , description: EDW Supplier Item Mapping View , implementation_dba_data: Not implemented in this database ,
-
View: EDW_POA_SPLRITEM_MPV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.EDW_POA_SPLRITEM_MPV, object_name:EDW_POA_SPLRITEM_MPV, status:VALID, product: PO - Purchasing , description: EDW Supplier Item Mapping View , implementation_dba_data: APPS.EDW_POA_SPLRITEM_MPV ,
-
View: EDW_POA_SPIM_SPLRITEM_FKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.EDW_POA_SPIM_SPLRITEM_FKV, object_name:EDW_POA_SPIM_SPLRITEM_FKV, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.EDW_POA_SPIM_SPLRITEM_FKV ,
-
View: EDW_POA_SPIM_SPLRITEM_FKV
12.2.2
product: PO - Purchasing , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.EDW_POA_SPLRITEM_M_C
12.1.1
-
APPS.EDW_SUPPLIER_ITEM_PKG dependencies on EDW_POA_SPIM_SPLRITEM_FKV
12.1.1
-
eTRM - POA Tables and Views
12.1.1
description: UNSPSC Item interface table ,
-
eTRM - PO Tables and Views
12.1.1
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,