Search Results total_shipping_charge
Overview
APPS.ASO_QUOTE_HEADERS_ALL_V is a reporting and integration view in Oracle E-Business Suite that exposes the header-level attributes of sales quotations managed within Oracle Advanced Pricing / Oracle Sales (the ASO schema). The view is defined as a single-source projection over the ASO_QUOTE_HEADERS base table and carries no joins, aggregations, or filtering logic of its own. Each row represents one version of one quote header, uniquely identified by QUOTE_HEADER_ID, within a specific operating unit context given by ORG_ID.
Because the view contains the "_ALL_" naming convention, it is intended to make quote header data visible across organizations within multi-org security models, subject to the profile-based security wrapper implemented at the base table or synonym level. It is the canonical source for quote totals, pricing currency information, customer and site references, and workflow/approval state. The user search term total_shipping_charge points directly to one of the monetary roll-up columns exposed here, confirming that this view is the correct stopping point for quote-level freight and shipping reporting.
Underlying Base Objects
The documented referenced base object is ASO_QUOTE_HEADERS, accessed through a SYNONYM. The view text is a straightforward column-by-column SELECT from that object, meaning column names, data types, and nullability are inherited unchanged. There is no denormalization: every attribute available in ASO_QUOTE_HEADERS is surfaced unfiltered in the view.
- ASO_QUOTE_HEADERS — the physical table storing one record per quote header version, including versioning, approval, pricing, and multi-org columns.
- ASO_QUOTE_HEADERS (SYNONYM) — the APPS-layer public synonym that the view references, permitting the view to be created and queried without a hard-coded schema qualifier.
Because the view is a pure projection, it carries no additional performance penalty beyond the base table access, and it does not introduce a WHERE clause that would suppress rows from other operating units or statuses.
Key Columns
- QUOTE_HEADER_ID — the primary identifier of the quote header version; join key to ASO_QUOTE_LINES_ALL, ASO_QUOTE_HEADERS_ALL_VL, and related child tables.
- QUOTE_NUMBER / QUOTE_NAME / QUOTE_VERSION — the human-readable quote identifier, description, and revision number.
- ORG_ID — the operating unit that owns the quote; essential for multi-org reporting and access control.
- QUOTE_STATUS_ID, PUBLISH_FLAG, MAX_VERSION_FLAG — status and lifecycle indicators, allowing the caller to isolate the current published version of a quote.
- PARTY_ID, CUST_ACCOUNT_ID, CUST_PARTY_ID — the selling (sold-to) customer references.
- INVOICE_TO_PARTY_SITE_ID, INVOICE_TO_PARTY_ID, INVOICE_TO_CUST_ACCOUNT_ID, INVOICE_TO_CUST_PARTY_ID — the bill-to identity and site used for invoicing and tax determination.
- CURRENCY_CODE, EXCHANGE_RATE, EXCHANGE_TYPE_CODE, EXCHANGE_RATE_DATE — currency and conversion context for all monetary columns.
- TOTAL_LIST_PRICE, TOTAL_ADJUSTED_AMOUNT, TOTAL_ADJUSTED_PERCENT, TOTAL_TAX, TOTAL_SHIPPING_CHARGE, SURCHARGE, TOTAL_QUOTE_PRICE, PAYMENT_AMOUNT — the monetary roll-up columns; TOTAL_SHIPPING_CHARGE holds the summed shipping/freight charge for the quote header.
- ORDER_ID, CONTRACT_ID, CONTRACT_TEMPLATE_ID, CONTRACT_TEMPLATE_MAJOR_VER — downstream order and contract linkage.
- ATTRIBUTE1 through ATTRIBUTE20, ATTRIBUTE_CATEGORY — the DFF flexfield columns available for extension.
- OBJECT_VERSION_NUMBER, SECURITY_GROUP_ID — concurrency control and multi-org security columns.
Common Use Cases and Queries
The most common requirement associated with this view is reporting and extracting quote header totals, including shipping charges, by customer, operating unit, and currency. The following sample isolates the current version of each quote and surfaces its shipping charge.
SELECT qh.quote_number, qh.quote_name, qh.quote_version, qh.org_id,
qh.customer_name_and_title, qh.currency_code,
qh.total_list_price, qh.total_adjusted_amount,
qh.total_tax, qh.total_shipping_charge, qh.total_quote_price
FROM apps.aso_quote_headers_all_v qh
WHERE qh.max_version_flag = 'Y'
AND qh.quote_status_id IS NOT NULL
ORDER BY qh.org_id, qh.quote_number;
Other frequent uses include joining this view to ASO_QUOTE_LINES_ALL to reconcile header-level shipping totals against line-level charges, feeding shipping amounts into downstream order import via ORDER_ID, and monitoring contract-backed quotes by filtering on CONTRACT_ID or CONTRACT_TEMPLATE_ID. Because the view exposes ATTRIBUTE1 through ATTRIBUTE20, it is also a standard vehicle for extracting descriptive flexfield content into data warehouse or integration staging layers.
-
VIEW: APPS.ASO_QUOTE_HEADERS_ALL_V
12.1.1
-
View: ASO_QUOTE_HEADERS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_QUOTE_HEADERS_ALL_V, object_name:ASO_QUOTE_HEADERS_ALL_V, status:VALID, product: ASO - Order Capture , description: quotations , implementation_dba_data: APPS.ASO_QUOTE_HEADERS_ALL_V ,
-
VIEW: ASO.ASO_QUOTE_HEADERS_ALL#
12.2.2
-
View: ASO_QUOTE_HEADERS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_QUOTE_HEADERS_ALL_V, object_name:ASO_QUOTE_HEADERS_ALL_V, status:VALID, product: ASO - Order Capture , description: quotations , implementation_dba_data: APPS.ASO_QUOTE_HEADERS_ALL_V ,
-
VIEW: APPS.AST_QUOTES_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_QUOTES_UWQ_V, object_name:AST_QUOTES_UWQ_V, status:VALID,
-
VIEW: APPS.ASO_QUOTE_HEADERS_ALL_V
12.2.2
-
VIEW: APPS.AST_QUOTES_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_QUOTES_UWQ_V, object_name:AST_QUOTES_UWQ_V, status:VALID,
-
VIEW: APPS.ASO_OA_QUOTE_HEADERS_ALL_V
12.2.2
-
VIEW: APPS.ASO_OA_QUOTE_HEADERS_ALL_V
12.1.1
-
View: IBE_SH_QUOTE_URL_V
12.1.1
product: IBE - iStore , implementation_dba_data: Not implemented in this database ,
-
View: IBE_SH_QUOTE_URL_V
12.2.2
product: IBE - iStore , implementation_dba_data: Not implemented in this database ,
-
View: IBE_ORDER_QUOTE_HEADERS_V
12.1.1
product: IBE - iStore , implementation_dba_data: Not implemented in this database ,
-
View: ASO_QUOTE_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_QUOTE_HEADERS_V, object_name:ASO_QUOTE_HEADERS_V, status:VALID, product: ASO - Order Capture , description: quotations , implementation_dba_data: APPS.ASO_QUOTE_HEADERS_V ,
-
VIEW: APPS.ASO_QUOTE_HEADERS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_QUOTE_HEADERS_ALL_V, object_name:ASO_QUOTE_HEADERS_ALL_V, status:VALID,
-
View: IBE_ORDER_QUOTE_HEADERS_V
12.2.2
product: IBE - iStore , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IBE_QUOTE_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_QUOTE_HEADERS_V, object_name:IBE_QUOTE_HEADERS_V, status:VALID,
-
View: AST_LS_QUOTES_V
12.1.1
product: AST - TeleSales , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IBE_QUOTE_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_QUOTE_HEADERS_V, object_name:IBE_QUOTE_HEADERS_V, status:VALID,
-
VIEW: APPS.ASO_QUOTE_HEADERS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_QUOTE_HEADERS_ALL_V, object_name:ASO_QUOTE_HEADERS_ALL_V, status:VALID,
-
View: ASO_QUOTE_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_QUOTE_HEADERS_V, object_name:ASO_QUOTE_HEADERS_V, status:VALID, product: ASO - Order Capture , description: quotations , implementation_dba_data: APPS.ASO_QUOTE_HEADERS_V ,
-
VIEW: ASO.ASO_QUOTE_HEADERS_ALL#
12.2.2
owner:ASO, object_type:VIEW, object_name:ASO_QUOTE_HEADERS_ALL#, status:VALID,
-
View: AST_QUOTES_UWQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_QUOTES_UWQ_V, object_name:AST_QUOTES_UWQ_V, status:VALID, product: AST - TeleSales , description: View for Quotes Node on UWQ. , implementation_dba_data: APPS.AST_QUOTES_UWQ_V ,
-
View: AST_QUOTES_UWQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_QUOTES_UWQ_V, object_name:AST_QUOTES_UWQ_V, status:VALID, product: AST - TeleSales , description: View for Quotes Node on UWQ. , implementation_dba_data: APPS.AST_QUOTES_UWQ_V ,
-
View: AST_LS_QUOTES_V
12.2.2
product: AST - TeleSales , implementation_dba_data: Not implemented in this database ,
-
APPS.ASO_WORKFLOW_QUOTE_PVT SQL Statements
12.1.1
-
VIEW: APPS.ASO_PVT_QUOTE_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_PVT_QUOTE_HEADERS_V, object_name:ASO_PVT_QUOTE_HEADERS_V, status:VALID,
-
APPS.ASO_WORKFLOW_QUOTE_PVT SQL Statements
12.2.2
-
VIEW: APPS.ASO_PVT_QUOTE_HEADERS_UI_V
12.1.1
owner:APPS, object_type:VIEW, object_name:ASO_PVT_QUOTE_HEADERS_UI_V, status:VALID,
-
VIEW: APPS.ASO_PVT_QUOTE_HEADERS_UI_V
12.2.2
owner:APPS, object_type:VIEW, object_name:ASO_PVT_QUOTE_HEADERS_UI_V, status:VALID,
-
APPS.ASO_WORKFLOW_PVT SQL Statements
12.2.2
-
APPS.ASO_WORKFLOW_PVT SQL Statements
12.1.1
-
View: IBE_QUOTE_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_QUOTE_HEADERS_V, object_name:IBE_QUOTE_HEADERS_V, status:VALID, product: IBE - iStore , implementation_dba_data: APPS.IBE_QUOTE_HEADERS_V ,
-
VIEW: APPS.ASO_PVT_QUOTE_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_PVT_QUOTE_HEADERS_V, object_name:ASO_PVT_QUOTE_HEADERS_V, status:VALID,
-
VIEW: APPS.ASO_QUOTE_HEADERS_V
12.2.2
-
VIEW: APPS.ASO_QUOTE_HEADERS_V
12.1.1
-
VIEW: APPS.ASO_QUOTE_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_QUOTE_HEADERS_V, object_name:ASO_QUOTE_HEADERS_V, status:VALID,
-
View: IBE_QUOTE_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_QUOTE_HEADERS_V, object_name:IBE_QUOTE_HEADERS_V, status:VALID, product: IBE - iStore , implementation_dba_data: APPS.IBE_QUOTE_HEADERS_V ,
-
VIEW: APPS.ASO_QUOTE_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_QUOTE_HEADERS_V, object_name:ASO_QUOTE_HEADERS_V, status:VALID,
-
TYPE: APPS.ASO_QUOTE_PUB_QTE_HEADER_REC_
12.2.2
owner:APPS, object_type:TYPE, object_name:ASO_QUOTE_PUB_QTE_HEADER_REC_, status:VALID,
-
VIEW: APPS.ASO_OA_QUOTE_HEADERS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, object_name:ASO_OA_QUOTE_HEADERS_ALL_V, status:VALID,
-
VIEW: APPS.ASO_OA_QUOTE_HEADERS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, object_name:ASO_OA_QUOTE_HEADERS_ALL_V, status:VALID,
-
View: ASO_PVT_QUOTE_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_PVT_QUOTE_HEADERS_V, object_name:ASO_PVT_QUOTE_HEADERS_V, status:VALID, product: ASO - Order Capture , implementation_dba_data: APPS.ASO_PVT_QUOTE_HEADERS_V ,
-
APPS.ASO_PUBLISH_MISC_INT SQL Statements
12.2.2
-
TABLE: ASO.ASO_QUOTE_HEADERS_ALL
12.1.1
owner:ASO, object_type:TABLE, fnd_design_data:ASO.ASO_QUOTE_HEADERS_ALL, object_name:ASO_QUOTE_HEADERS_ALL, status:VALID,
-
TABLE: ASO.ASO_QUOTE_HEADERS_ALL
12.2.2
owner:ASO, object_type:TABLE, fnd_design_data:ASO.ASO_QUOTE_HEADERS_ALL, object_name:ASO_QUOTE_HEADERS_ALL, status:VALID,
-
APPS.ASO_PUBLISH_MISC_INT SQL Statements
12.1.1
-
APPS.ASO_QUOTE_HEADERS_PKG SQL Statements
12.1.1
-
APPS.ASO_QUOTE_HEADERS_PKG SQL Statements
12.2.2
-
View: ASO_PVT_QUOTE_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_PVT_QUOTE_HEADERS_V, object_name:ASO_PVT_QUOTE_HEADERS_V, status:VALID, product: ASO - Order Capture , implementation_dba_data: APPS.ASO_PVT_QUOTE_HEADERS_V ,
-
View: XNC_QUOTE_HEADERS_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: XNC_QUOTE_HEADERS_V retrieves all quote header detail. , implementation_dba_data: Not implemented in this database ,