Search Results so_price_list_lines
Overview
APPS.ICX_NONSHIP_ITEMS_V is a reporting view in the Oracle E-Business Suite Internet Commerce (iStore/ICX) schema. Its purpose is to expose the intersection of non-shippable inventory items and the price lists on which those items are defined. In Oracle Order Management and Advanced Pricing, a shippable item is one that can be placed on a delivery and shipped to a customer. Items flagged as non-shippable (SHIPPABLE_ITEM_FLAG = 'N') are typically services, warranties, subscriptions, or other charge lines that accompany a physical shipment but are not themselves fulfilled through shipping. This view allows reporting and integration processes to identify those items together with the price list and price list line that carry their pricing definitions.
The view is relevant to the search term so_price_list_lines because it is defined directly over the SO_PRICE_LIST_LINES table. It provides a convenient, pre-joined perspective that links the item master, the price list header, and the price list line in a single queryable object.
Underlying Base Objects
Per the documented view text, ICX_NONSHIP_ITEMS_V is defined over three objects joined in a single SELECT DISTINCT statement:
- MTL_SYSTEM_ITEMS_KFV — the key-flexfield variant of the item master, supplying the inventory item identifier, description, organization, and the shippable flag. It is referenced via a SYNONYM in the APPS schema.
- SO_PRICE_LIST_LINES — the price list line entity, supplying the price list line identifier and the foreign key to the price list header. Also referenced via a SYNONYM.
- SO_PRICE_LISTS — the price list header, supplying the price list name and price list identifier. Referenced via a SYNONYM.
The documented metadata also records the base objects QP_PRICE_LIST_PVT and QP_UTIL as packages referenced in the context of this object. These belong to the Advanced Pricing (QP) module and provide the pricing engine logic that governs how price list lines are interpreted and expanded. The join conditions are: the item flag must equal 'N', the item must match the price list line on INVENTORY_ITEM_ID, and the price list line must match the header on PRICE_LIST_ID. The DISTINCT keyword eliminates duplication that can arise when an item appears on multiple price list lines.
Key Columns
- INVENTORY_ITEM_ID — the unique identifier of the non-shippable item.
- DESCRIPTION — the item description from the item master.
- ORGANIZATION_ID — the inventory organization in which the item is defined.
- SHIPPABLE_ITEM_FLAG — filtered to
'N'; confirms the item is non-shippable. - NAME — the price list name.
- PRICE_LIST_ID — the identifier of the price list header.
- PRICE_LIST_LINE_ID — the identifier of the specific price list line carrying the item.
Common Use Cases and Queries
Typical uses include auditing which non-shippable items are priced, validating that service and warranty items exist on the correct price lists, and driving integration extracts that synchronize pricing data.
A basic query lists all non-shippable items with their price list context:
SELECT inventory_item_id, description, organization_id, name, price_list_id, price_list_line_id FROM apps.icx_nonship_items_v;
To restrict to a specific price list:
SELECT inventory_item_id, description, price_list_line_id FROM apps.icx_nonship_items_v WHERE price_list_id = :p_price_list_id;
To find a single item across price lists:
SELECT name, price_list_id, price_list_line_id FROM apps.icx_nonship_items_v WHERE inventory_item_id = :p_item_id;
-
VIEW: APPS.ICX_NONSHIP_ITEMS_V
12.2.2
-
VIEW: APPS.ICX_NONSHIP_ITEMS_V
12.1.1
-
VIEW: APPS.ICX_PRICE_LIST_UOMS_V
12.2.2
-
VIEW: APPS.ICX_PRICE_LIST_UOMS_V
12.1.1
-
VIEW: APPS.ICX_WEBSTORE_CATEGORIES_V
12.1.1
-
View: AS_QUOTE_ITEMS_V
12.2.2
product: AS - Sales Foundation , description: Quote items view , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.ICX_WEBSTORE_CATEGORIES_V
12.2.2
-
APPS.SO_PRICE_LIST_LINES_PKG SQL Statements
12.1.1
-
View: AS_QUOTE_ITEMS_V
12.1.1
product: AS - Sales Foundation , description: Quote items view , implementation_dba_data: Not implemented in this database ,
-
APPS.SO_PRICE_LIST_LINES_PKG SQL Statements
12.2.2
-
VIEW: APPS.ICX_WEBSTORE_ITEMS_V
12.1.1
-
VIEW: APPS.ICX_WEBSTORE_ITEMS_V
12.2.2
-
VIEW: APPS.ICX_WEBSTORE_SEARCH_ITEMS_V
12.2.2
-
VIEW: APPS.ICX_WEBSTORE_SEARCH_ITEMS_V
12.1.1
-
VIEW: APPS.SO_PRICE_LIST_LINES_ALL_V
12.1.1
-
VIEW: APPS.SO_PRICE_LIST_LINES_ALL_V
12.2.2
-
View: ICX_WEBSTORE_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_WEBSTORE_ITEMS_V, object_name:ICX_WEBSTORE_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: - Retrofitted , implementation_dba_data: APPS.ICX_WEBSTORE_ITEMS_V ,
-
APPS.CS_LIST_PRICE_PKG SQL Statements
12.1.1
-
APPS.CS_LIST_PRICE_PKG SQL Statements
12.2.2
-
View: ICX_WEBSTORE_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_WEBSTORE_ITEMS_V, object_name:ICX_WEBSTORE_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: - Retrofitted , implementation_dba_data: APPS.ICX_WEBSTORE_ITEMS_V ,
-
View: ICX_PRICE_LIST_UOMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PRICE_LIST_UOMS_V, object_name:ICX_PRICE_LIST_UOMS_V, status:VALID, product: ICX - Oracle iProcurement , description: - Retrofitted , implementation_dba_data: APPS.ICX_PRICE_LIST_UOMS_V ,
-
View: OEBV_PRICE_LIST_LINES
12.1.1
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: ICX_NONSHIP_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_NONSHIP_ITEMS_V, object_name:ICX_NONSHIP_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: Non Shippable Items View , implementation_dba_data: APPS.ICX_NONSHIP_ITEMS_V ,
-
VIEW: APPS.ICX_ITEM_DETLS_INFO_V
12.1.1
-
View: ICX_NONSHIP_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_NONSHIP_ITEMS_V, object_name:ICX_NONSHIP_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: Non Shippable Items View , implementation_dba_data: APPS.ICX_NONSHIP_ITEMS_V ,
-
View: ICX_WEBSTORE_SEARCH_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_WEBSTORE_SEARCH_ITEMS_V, object_name:ICX_WEBSTORE_SEARCH_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: Web Store Context Search Items View - Retrofitted , implementation_dba_data: APPS.ICX_WEBSTORE_SEARCH_ITEMS_V ,
-
View: ICX_WEBSTORE_SEARCH_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_WEBSTORE_SEARCH_ITEMS_V, object_name:ICX_WEBSTORE_SEARCH_ITEMS_V, status:VALID, product: ICX - Oracle iProcurement , description: Web Store Context Search Items View - Retrofitted , implementation_dba_data: APPS.ICX_WEBSTORE_SEARCH_ITEMS_V ,
-
PACKAGE BODY: APPS.OE_CONFIG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_CONFIG, status:VALID,
-
PACKAGE BODY: APPS.OE_CONFIG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_CONFIG, status:VALID,
-
View: ICX_PRICE_LIST_UOMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PRICE_LIST_UOMS_V, object_name:ICX_PRICE_LIST_UOMS_V, status:VALID, product: ICX - Oracle iProcurement , description: - Retrofitted , implementation_dba_data: APPS.ICX_PRICE_LIST_UOMS_V ,
-
PACKAGE BODY: APPS.OEXCPDST
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OEXCPDST, status:VALID,
-
View: OEBV_PRICE_LIST_LINES
12.2.2
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.SO_PRICE_LIST_LINES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:SO_PRICE_LIST_LINES_PKG, status:VALID,
-
PACKAGE BODY: APPS.CS_LIST_PRICE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_LIST_PRICE_PKG, status:VALID,
-
VIEW: APPS.ICX_ITEM_DETLS_INFO_V
12.2.2
-
View: ICX_WEBSTORE_CATEGORIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_WEBSTORE_CATEGORIES_V, object_name:ICX_WEBSTORE_CATEGORIES_V, status:VALID, product: ICX - Oracle iProcurement , description: Web Store Category Page View , implementation_dba_data: APPS.ICX_WEBSTORE_CATEGORIES_V ,
-
View: ICX_WEBSTORE_CATEGORIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_WEBSTORE_CATEGORIES_V, object_name:ICX_WEBSTORE_CATEGORIES_V, status:VALID, product: ICX - Oracle iProcurement , description: Web Store Category Page View , implementation_dba_data: APPS.ICX_WEBSTORE_CATEGORIES_V ,
-
PACKAGE BODY: APPS.OE_PRICE_LIST_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_PRICE_LIST_PVT, status:VALID,
-
PACKAGE BODY: APPS.OE_PRICE_LIST_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_PRICE_LIST_PVT, status:VALID,
-
PACKAGE BODY: APPS.OEXCPDST
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OEXCPDST, status:VALID,
-
PACKAGE BODY: APPS.CS_LIST_PRICE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_LIST_PRICE_PKG, status:VALID,
-
PACKAGE BODY: APPS.CS_CSXSVODS_CHECK_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_CSXSVODS_CHECK_PKG, status:VALID,
-
PACKAGE BODY: APPS.SO_PRICE_LIST_LINES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:SO_PRICE_LIST_LINES_PKG, status:VALID,
-
SYNONYM: APPS.SO_PRICE_LIST_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:SO_PRICE_LIST_LINES, status:VALID,
-
SYNONYM: APPS.SO_PRICE_LIST_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:SO_PRICE_LIST_LINES, status:VALID,
-
View: AS_QUOTE_PRICE_ITEMS_V
12.1.1
product: AS - Sales Foundation , description: Quote items pricing view , implementation_dba_data: Not implemented in this database ,
-
View: AS_QUOTE_PRICE_ITEMS_V
12.2.2
product: AS - Sales Foundation , description: Quote items pricing view , implementation_dba_data: Not implemented in this database ,
-
View: OEFV_PRICE_LIST_LINES
12.1.1
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.CS_CSXSVODS_CHECK_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_CSXSVODS_CHECK_PKG, status:VALID,
-
APPS.OE_PRICE_LIST_PVT SQL Statements
12.1.1