Search Results invoiced_amount
Overview
APPS.ICX_CST_CUSTOMER_30DAY_V is a reporting view in the Oracle E-Business Suite (EBS) e-commerce and costing schema. It is part of the Oracle iStore / Customer Self-Service margin analysis infrastructure and is designed to present customer-level sales and margin performance for a rolling 30-day period. The view aggregates invoiced revenue and margin amounts per customer, then derives percentage-based metrics that allow buyers, sales representatives, and internal analysts to compare the relative contribution of each customer against total organizational sales and margin.
The suffix 30DAY reflects that the view filters exclusively on a period code of '30D', meaning it returns figures tied to the trailing 30-day accounting window maintained by the margin analysis build process. The view is not a transactional object; it exposes summarized analytical output and is intended for read-only reporting and dashboard consumption rather than data entry or integration writes.
Underlying Base Objects
The view is defined over two base objects:
- ICX_MARGIN_ANALYSIS (alias MA) — the primary source of invoiced amount and margin figures, together with the ORGANIZATION_ID and BUILD_ID columns.
- CST_MARGIN_BUILD (alias MB) — joined to ICX_MARGIN_ANALYSIS on BUILD_ID to qualify the correct margin build snapshot.
The two tables are joined with the condition MA.BUILD_ID = MB.BUILD_ID, ensuring that only rows belonging to the current margin build are returned. A predicate of MARGIN IS NOT NULL removes records lacking a computed margin value. Multi-organization security is enforced through a comparison of MA.ORG_ID against the organization identifier decoded from the USERENV('CLIENT_INFO') session context. This mechanism restricts results to the operating unit or inventory organization the caller is authorized to view, defaulting to a sentinel value of -99 when no organization context is present. Neither base object is further documented in the ETRM metadata, so lineage beyond this join cannot be confirmed from the supplied text.
Key Columns
- CUSTOMER_ID — unique identifier of the customer used as the grouping key.
- SOLD_TO_CUSTOMER_NAME — the customer name associated with the sold-to party.
- SUM(INVOICED_AMOUNT) — total invoiced revenue for the customer over the 30-day period. This is the primary measure matching the search term invoiced_amount.
- SUM(MARGIN) — total margin generated by the customer for the same period.
- CUSTOMER_MARGIN_PCT — margin as a percentage of invoiced amount, computed as
MARGIN / INVOICED_AMOUNT * 100, rounded to two decimals; returns NULL when invoiced amount is zero. - SALES_PCT — the customer's invoiced amount as a percentage of total sales for the 30-day period, obtained via
ICX_MARGIN_WEB_ANA_PKG.ICX_GET_TOTAL_SALES('30D'). - MARGIN_PCT — the customer's margin as a percentage of total margin for the period, obtained via
ICX_MARGIN_WEB_ANA_PKG.ICX_GET_TOTAL_MARGIN('30D'). - PERIOD — the analysis period code, fixed to
'30D'by the HAVING clause. - TO_DATE / TO_DATE - 30 — the ending and starting dates bounding the 30-day window.
Common Use Cases and Queries
Typical usage centers on margin dashboards, customer scorecards, and exception reporting. To rank customers by invoiced revenue within the 30-day window:
SELECT customer_id, sold_to_customer_name, SUM(invoiced_amount)FROM apps.icx_cst_customer_30day_vORDER BY 3 DESC;
To identify customers whose margin percentage falls below a threshold:
SELECT customer_id, sold_to_customer_name, customer_margin_pctFROM apps.icx_cst_customer_30day_vWHERE customer_margin_pct < 10;
Because SALES_PCT and MARGIN_PCT depend on packaged functions that return totals for the caller's authorized organization, results vary by session context. Reports built on this view should therefore rely on APPS-level connectivity and correct CLIENT_INFO initialization to avoid misleading comparisons.
-
VIEW: APPS.ICX_CST_CUSTOMER_30DAY_V
12.1.1
-
VIEW: APPS.ICX_CST_CUSTOMER_90DAY_V
12.1.1
-
VIEW: APPS.ICX_CST_ITEM_7DAY_V
12.1.1
-
VIEW: APPS.ICX_CST_ITEM_30DAY_V
12.1.1
-
VIEW: APPS.ICX_CST_SALES_REP_7DAY_V
12.1.1
-
VIEW: APPS.ICX_CST_TERRITORY_30DAY_V
12.1.1
-
VIEW: APPS.ICX_CST_TERRITORY_90DAY_V
12.1.1
-
VIEW: APPS.ICX_CST_SALES_REP_30DAY_V
12.1.1
-
VIEW: ONT.ONT_PRT_MARGIN_ANALYSIS#
12.2.2
-
VIEW: ICX.ICX_MARGIN_ANALYSIS#
12.2.2
-
VIEW: APPS.ICX_CST_ITEM_90DAY_V
12.1.1
-
VIEW: APPS.ICX_CST_CUSTOMER_7DAY_V
12.1.1
-
VIEW: APPS.ICX_CST_TERRITORY_7DAY_V
12.1.1
-
VIEW: APPS.ICX_CST_SALES_REP_90DAY_V
12.1.1
-
View: ICX_CST_CUSTOMER_7DAY_V
12.2.2
product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Customers for the last 7 days , implementation_dba_data: Not implemented in this database ,
-
View: ICX_CST_ITEM_7DAY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_CST_ITEM_7DAY_V, object_name:ICX_CST_ITEM_7DAY_V, status:VALID, product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Item for the last 7 days , implementation_dba_data: APPS.ICX_CST_ITEM_7DAY_V ,
-
View: ICX_CST_CUSTOMER_7DAY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_CST_CUSTOMER_7DAY_V, object_name:ICX_CST_CUSTOMER_7DAY_V, status:VALID, product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Customers for the last 7 days , implementation_dba_data: APPS.ICX_CST_CUSTOMER_7DAY_V ,
-
View: ICX_CST_CUSTOMER_90DAY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_CST_CUSTOMER_90DAY_V, object_name:ICX_CST_CUSTOMER_90DAY_V, status:VALID, product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Customers for the last 90 days , implementation_dba_data: APPS.ICX_CST_CUSTOMER_90DAY_V ,
-
View: ICX_CST_ITEM_30DAY_V
12.2.2
product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Item for the last 30 days , implementation_dba_data: Not implemented in this database ,
-
View: ICX_CST_CUSTOMER_90DAY_V
12.2.2
product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Customers for the last 90 days , implementation_dba_data: Not implemented in this database ,
-
View: ICX_CST_ITEM_30DAY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_CST_ITEM_30DAY_V, object_name:ICX_CST_ITEM_30DAY_V, status:VALID, product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Item for the last 30 days , implementation_dba_data: APPS.ICX_CST_ITEM_30DAY_V ,
-
View: ICX_CST_CUSTOMER_30DAY_V
12.2.2
product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Customers for the last 30 days , implementation_dba_data: Not implemented in this database ,
-
View: ICX_CST_SALES_REP_7DAY_V
12.2.2
product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Sales Representative for the last 7 days , implementation_dba_data: Not implemented in this database ,
-
View: ICX_CST_TERRITORY_90DAY_V
12.2.2
product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Territory for the last 90 days , implementation_dba_data: Not implemented in this database ,
-
View: ICX_CST_SALES_REP_7DAY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_CST_SALES_REP_7DAY_V, object_name:ICX_CST_SALES_REP_7DAY_V, status:VALID, product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Sales Representative for the last 7 days , implementation_dba_data: APPS.ICX_CST_SALES_REP_7DAY_V ,
-
View: ICX_CST_TERRITORY_30DAY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_CST_TERRITORY_30DAY_V, object_name:ICX_CST_TERRITORY_30DAY_V, status:VALID, product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Territory for the last 30 days , implementation_dba_data: APPS.ICX_CST_TERRITORY_30DAY_V ,
-
View: ICX_CST_TERRITORY_30DAY_V
12.2.2
product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Territory for the last 30 days , implementation_dba_data: Not implemented in this database ,
-
APPS.ICX_MARGIN_WEB_ANA_PKG SQL Statements
12.1.1
-
APPS.ONT_PRT_MARGIN_ANA_PKG SQL Statements
12.2.2
-
View: ICX_CST_CUSTOMER_30DAY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_CST_CUSTOMER_30DAY_V, object_name:ICX_CST_CUSTOMER_30DAY_V, status:VALID, product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Customers for the last 30 days , implementation_dba_data: APPS.ICX_CST_CUSTOMER_30DAY_V ,
-
View: ICX_CST_ITEM_90DAY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_CST_ITEM_90DAY_V, object_name:ICX_CST_ITEM_90DAY_V, status:VALID, product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Item for the last 90 days , implementation_dba_data: APPS.ICX_CST_ITEM_90DAY_V ,
-
View: ICX_CST_ITEM_7DAY_V
12.2.2
product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Item for the last 7 days , implementation_dba_data: Not implemented in this database ,
-
View: ICX_CST_ITEM_90DAY_V
12.2.2
product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Item for the last 90 days , implementation_dba_data: Not implemented in this database ,
-
View: ICX_CST_TERRITORY_90DAY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_CST_TERRITORY_90DAY_V, object_name:ICX_CST_TERRITORY_90DAY_V, status:VALID, product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Territory for the last 90 days , implementation_dba_data: APPS.ICX_CST_TERRITORY_90DAY_V ,
-
View: ICX_CST_SALES_REP_90DAY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_CST_SALES_REP_90DAY_V, object_name:ICX_CST_SALES_REP_90DAY_V, status:VALID, product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Sales Representative for the last 90 days , implementation_dba_data: APPS.ICX_CST_SALES_REP_90DAY_V ,
-
View: ICX_CST_SALES_REP_90DAY_V
12.2.2
product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Sales Representative for the last 90 days , implementation_dba_data: Not implemented in this database ,
-
View: ICX_CST_TERRITORY_7DAY_V
12.2.2
product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Territory for the last 7 days , implementation_dba_data: Not implemented in this database ,
-
View: ICX_CST_SALES_REP_30DAY_V
12.2.2
product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Sales Representative for the last 30 days , implementation_dba_data: Not implemented in this database ,
-
APPS.ONT_PRT_MARGIN_ANA_PKG SQL Statements
12.1.1
-
View: ICX_CST_SALES_REP_30DAY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_CST_SALES_REP_30DAY_V, object_name:ICX_CST_SALES_REP_30DAY_V, status:VALID, product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Sales Representative for the last 30 days , implementation_dba_data: APPS.ICX_CST_SALES_REP_30DAY_V ,
-
View: ICX_CST_TERRITORY_7DAY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_CST_TERRITORY_7DAY_V, object_name:ICX_CST_TERRITORY_7DAY_V, status:VALID, product: ICX - Oracle iProcurement , description: Margin Analysis Summary View by Territory for the last 7 days , implementation_dba_data: APPS.ICX_CST_TERRITORY_7DAY_V ,
-
VIEW: BOM.CST_MARGIN_SUMMARY#
12.2.2
-
VIEW: BOM.CST_BIS_MARGIN_SUMMARY#
12.2.2
-
View: BIC_REVENUE_TRX_SUMMARY_V
12.2.2
product: BIC - Customer Intelligence(Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: ICX_CST_MARGIN_DETAIL_V
12.2.2
product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
VIEW: ICX.ICX_MARGIN_ANALYSIS#
12.2.2
owner:ICX, object_type:VIEW, object_name:ICX_MARGIN_ANALYSIS#, status:VALID,
-
View: ICX_CST_MARGIN_DETAIL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_CST_MARGIN_DETAIL_V, object_name:ICX_CST_MARGIN_DETAIL_V, status:VALID, product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: APPS.ICX_CST_MARGIN_DETAIL_V ,
-
View: BIC_REVENUE_TRX_SUMMARY_V
12.1.1
product: BIC - Customer Intelligence (obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: PO.PO_PRICE_ADJUSTMENTS_ARCHIVE#
12.2.2
-
VIEW: PO.PO_PRICE_ADJUSTMENTS#
12.2.2