Search Results order_total
Overview
The view ICX_PANEL_SO_SUMMARY_V belongs to the ICX product family, which corresponds to Oracle iProcurement. Within the Oracle E-Business Suite 12.1.1 and 12.2.2 release streams, ICX objects historically supported the iProcurement storefront, including the informational panels that surfaced summary data to requisitioning users and buyers. The ETRM metadata classifies this particular view plainly as Obsolete. In the documented 12.2.2 repository, the view is listed with no owner and no referenced base objects, indicating that it is not implemented in the database and is retained only as historical documentation.
Despite its obsolete status, the object remains of interest to technical consultants because it illustrates a common iProcurement reporting pattern: aggregating sales order activity against customer records and presenting the results in a display-ready format. Its role in the EBS reporting and integration layers is therefore legacy rather than operational; no current concurrent program, OA Framework region, or interface depends on it in a supported 12.1.1 or 12.2.2 environment.
Underlying Base Objects
According to the documented view text, ICX_PANEL_SO_SUMMARY_V is defined over two base tables joined in a single query. The first is RA_CUSTOMERS, aliased as CUST, which supplies the customer identifier and customer name. The second is SO_HEADERS, aliased as H, which supplies order header attributes including currency, order dates, order number, and header identifier. The join is expressed as an outer join on the customer side (H.CUSTOMER_ID = CUST.CUSTOMER_ID(+)), meaning order rows are preserved even when no matching customer record exists.
The ETRM 12.2.2 metadata records no owner and no documented referenced base objects, which is consistent with an obsolete, non-implemented view. In practice, SO_HEADERS is a legacy synonym or compatibility object that maps to the Order Management order header structures, while RA_CUSTOMERS is the Receivables customer table. The view also invokes the function OE_QUERY.ORDER_TOTAL and the formatting utility FND_CURRENCY.SAFE_GET_FORMAT_MASK, both of which are server-side PL/SQL dependencies rather than base tables.
Key Columns
- CUSTOMER_ID — Identifier of the customer from
RA_CUSTOMERS; used as a grouping key. - CUSTOMER_NAME — Descriptive customer name, also grouped.
- CURRENCY_CODE — Order currency from the header, forming part of the grouping set.
- LAST_DATE_ORDERED — Maximum
DATE_ORDEREDacross the aggregated orders. - LAST_DATE_REQUESTED — Maximum
DATE_REQUESTED_CURRENTfrom the header. - ORDER_TOTAL — Sum of
OE_QUERY.ORDER_TOTAL(H.HEADER_ID), formatted throughFND_CURRENCY.SAFE_GET_FORMAT_MASKwith a width of 30. - TOTAL_SO_NUMBERS — Count of
H.ORDER_NUMBERvalues, representing the number of sales orders in the group.
The order_total column is the element most relevant to the originating search. It is not a stored column but a computed aggregate, meaning any consumer querying this view receives a derived monetary value rather than a persisted amount.
Common Use Cases and Queries
The view was designed to produce a rolling thirty-day summary of order activity per customer and currency, which suits dashboard-style panels and buyer review screens. Because it is documented as obsolete and not implemented, the primary practical use today is migration analysis or historical reconstruction. A representative query against the view, where it exists, would be:
SELECT customer_name, currency_code, order_total, total_so_numbers FROM icx_panel_so_summary_v ORDER BY order_total DESC;SELECT customer_id, SUM(TO_NUMBER(order_total)) FROM icx_panel_so_summary_v GROUP BY customer_id;— noting thatorder_totalis a formatted character string, so numeric conversion requires caution.SELECT * FROM icx_panel_so_summary_v WHERE last_date_ordered >= TRUNC(SYSDATE) - 7;— refines the built-in thirty-day window.
For new development on 12.1.1 or 12.2.2, the recommended approach is to bypass this obsolete view entirely and query OE_ORDER_HEADERS_ALL and RA_CUSTOMERS directly, replicating the OE_QUERY.ORDER_TOTAL logic with supported Order Management APIs or a custom aggregation. Any dependency on ICX_PANEL_SO_SUMMARY_V should be treated as technical debt and removed during upgrade or remediation work.
-
View: ICX_PANEL_SO_SUMMARY_V
12.2.2
product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: ICX_PANEL_SO_SUMMARY_V
12.1.1
product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: SO_HEADERS_APPLY_HOLDS_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_HEADERS_APPLY_HOLDS_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: OE_PRN_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRN_ORDER_HEADERS_V, object_name:OE_PRN_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_PRN_ORDER_HEADERS_V ,
-
View: OE_PRN_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRN_ORDER_HEADERS_V, object_name:OE_PRN_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_PRN_ORDER_HEADERS_V ,
-
View: AST_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_ORDER_HEADERS_V, object_name:AST_ORDER_HEADERS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_ORDER_HEADERS_V ,
-
VIEW: APPS.ASO_I_ORDER_HEADERS_BALI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_ORDER_HEADERS_BALI_V, object_name:ASO_I_ORDER_HEADERS_BALI_V, status:VALID,
-
View: AST_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_ORDER_HEADERS_V, object_name:AST_ORDER_HEADERS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_ORDER_HEADERS_V ,
-
VIEW: APPS.ASO_I_ORDER_HEADERS_BALI_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_ORDER_HEADERS_BALI_V, object_name:ASO_I_ORDER_HEADERS_BALI_V, status:VALID,
-
VIEW: APPS.AST_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_ORDER_HEADERS_V, object_name:AST_ORDER_HEADERS_V, status:VALID,
-
VIEW: APPS.ASO_PVT_CUST_ORDER_HDRS_BALI_V
12.2.2
owner:APPS, object_type:VIEW, object_name:ASO_PVT_CUST_ORDER_HDRS_BALI_V, status:VALID,
-
View: OE_AS_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AS_ORDER_HEADERS_V, object_name:OE_AS_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: View to provide details of all existing orders in the Order Management. , implementation_dba_data: APPS.OE_AS_ORDER_HEADERS_V ,
-
VIEW: APPS.AST_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_ORDER_HEADERS_V, object_name:AST_ORDER_HEADERS_V, status:VALID,
-
View: OE_AS_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AS_ORDER_HEADERS_V, object_name:OE_AS_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: View to provide details of all existing orders in the Order Management. , implementation_dba_data: APPS.OE_AS_ORDER_HEADERS_V ,
-
VIEW: APPS.CSC_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:CSC_ORDER_HEADERS_V, status:VALID,
-
VIEW: APPS.OE_PRN_ORDER_HEADERS_V
12.2.2
-
VIEW: APPS.ASO_PVT_CUST_ORDER_HDRS_BALI_V
12.1.1
owner:APPS, object_type:VIEW, object_name:ASO_PVT_CUST_ORDER_HDRS_BALI_V, status:VALID,
-
VIEW: APPS.CSC_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:CSC_ORDER_HEADERS_V, status:VALID,
-
VIEW: APPS.OE_PRN_ORDER_HEADERS_V
12.1.1
-
VIEW: APPS.OE_AS_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AS_ORDER_HEADERS_V, object_name:OE_AS_ORDER_HEADERS_V, status:VALID,
-
Lookup Type: DISCOUNTS
12.1.1
product: ONT - Order Management , meaning: Meaning N/A for : DISCOUNTS , description: Types of discounts available ,
-
VIEW: APPS.OE_AS_ORDER_HEADERS_V
12.1.1
-
VIEW: APPS.OE_AS_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AS_ORDER_HEADERS_V, object_name:OE_AS_ORDER_HEADERS_V, status:VALID,
-
VIEW: APPS.OE_DISCOUNTS_V
12.1.1
-
Lookup Type: DISCOUNTS
12.2.2
product: ONT - Order Management , meaning: Meaning N/A for : DISCOUNTS , description: Types of discounts available ,
-
Lookup Type: DISCOUNTS
12.2.2
product: OE - Order Entry , meaning: Meaning N/A for : DISCOUNTS , description: Types of discounts available ,
-
View: IBE_OE_ORDER_HEADERS_V
12.1.1
product: IBE - iStore , description: This view is used to show the Order Summary and Order Header Detail in Post Sales Interaction with Customer. This view is based in aso_i_oe_order_headers_v to get the Order Header Details. , implementation_dba_data: Not implemented in this database ,
-
View: IBE_OE_ORDER_HEADERS_V
12.2.2
product: IBE - iStore , description: This view is used to show the Order Summary and Order Header Detail in Post Sales Interaction with Customer. This view is based in aso_i_oe_order_headers_v to get the Order Header Details. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.OE_DISCOUNTS_V
12.2.2
-
VIEW: APPS.OE_AS_ORDER_HEADERS_V
12.2.2
-
Lookup Type: DISCOUNTS
12.1.1
product: OE - Order Entry , meaning: Meaning N/A for : DISCOUNTS , description: Types of discounts available ,
-
VIEW: APPS.AST_ORDER_HEADERS_V
12.2.2
-
VIEW: APPS.OE_PRN_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRN_ORDER_HEADERS_V, object_name:OE_PRN_ORDER_HEADERS_V, status:VALID,
-
VIEW: APPS.AST_ORDER_HEADERS_V
12.1.1
-
VIEW: APPS.OE_PRN_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRN_ORDER_HEADERS_V, object_name:OE_PRN_ORDER_HEADERS_V, status:VALID,
-
View: PO_ECX_HEADER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ECX_HEADER_V, object_name:PO_ECX_HEADER_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_ECX_HEADER_V ,
-
View: PO_CXML_HEADER_ARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_CXML_HEADER_ARCH_V, object_name:PO_CXML_HEADER_ARCH_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_CXML_HEADER_ARCH_V ,
-
View: ICX_SO_HEADERS_V
12.2.2
product: ICX - Oracle iProcurement , description: Order Entry Header View , implementation_dba_data: Not implemented in this database ,
-
View: PO_ECX_HEADER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ECX_HEADER_V, object_name:PO_ECX_HEADER_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_ECX_HEADER_V ,
-
VIEW: APPS.CSC_ORDER_HEADERS_V
12.2.2
-
View: AST_QT_ORDERS_BALI_V
12.1.1
product: AST - TeleSales , implementation_dba_data: Not implemented in this database ,
-
View: ICX_SO_HEADERS_V
12.1.1
product: ICX - Oracle iProcurement , description: Order Entry Header View , implementation_dba_data: Not implemented in this database ,
-
View: PO_CXML_HEADER_ARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_CXML_HEADER_ARCH_V, object_name:PO_CXML_HEADER_ARCH_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_CXML_HEADER_ARCH_V ,
-
VIEW: APPS.CSC_ORDER_HEADERS_V
12.1.1
-
View: AST_QT_ORDERS_BALI_V
12.2.2
product: AST - TeleSales , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PO_ECX_HEADER_V
12.1.1
-
VIEW: APPS.PO_ECX_HEADER_V
12.2.2
-
VIEW: APPS.PO_ECX_HEADER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ECX_HEADER_V, object_name:PO_ECX_HEADER_V, status:VALID,
-
View: ASO_I_ORDER_HEADERS_BALI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_ORDER_HEADERS_BALI_V, object_name:ASO_I_ORDER_HEADERS_BALI_V, status:VALID, product: ASO - Order Capture , implementation_dba_data: APPS.ASO_I_ORDER_HEADERS_BALI_V ,