Search Results aso_quote_headers_all_v
Overview
ASO_QUOTE_HEADERS_ALL_V is an Oracle E-Business Suite view owned by the APPS schema and validated against the ASO (Order Capture) product family. Its documented description is simply "quotations," and it exposes the header-level attributes of sales quotations captured through Oracle Quoting / Order Capture. The view is a direct, unrestricted projection of its base synonym, presenting every column of the quotation header without joins, filters, or aggregation. This makes it the canonical reporting and integration surface for quote-header data in EBS 12.1.1 and 12.2.2: because it is a view layered over the underlying table, its structure documents the physical header entity itself.
The "_V" suffix conventionally signals a view, and its presence alongside the base synonym is what reporting tools, concurrent programs, interfaces, and custom extensions rely on. Any attribute physically present on the quotation header — including the cost, currency, contract, and party identifiers — is available here through a single SELECT.
Underlying Base Objects
The view is defined over the documented referenced base object ASO_QUOTE_HEADERS (exposed in the APPS schema as a synonym), and its view text is a plain column list drawn from ASO_QUOTE_HEADERS_ALL. The trailing "_ALL" naming denotes an organization-enabled entity; the header carries ORG_ID, consistent with Multi-Org Access Control (MOAC). The projection spans the complete header record, from primary key and audit columns through financial totals, party and site references, currency and exchange attributes, contract identifiers, descriptive flexfield columns (ATTRIBUTE1–15 and ATTRIBUTE_CATEGORY), and control columns such as SECURITY_GROUP_ID, OBJECT_VERSION_NUMBER, PUBLISH_FLAG, MAX_VERSION_FLAG, and QUOTE_TYPE. Each column maps one-to-one to a base column, and no data transformation or business logic is applied within the view.
Key Columns
QUOTE_HEADER_ID— primary identifier of the quotation header; joins to the quotation lines entity.QUOTE_NUMBER,QUOTE_NAME,QUOTE_VERSION— user-facing quotation identity and versioning.QUOTE_STATUS_ID,QUOTE_TYPE,QUOTE_CATEGORY_CODE,QUOTE_SOURCE_CODE— classification and lifecycle status.ORG_ID— operating unit; governs MOAC filtering.TOTAL_LIST_PRICE,TOTAL_ADJUSTED_AMOUNT,TOTAL_ADJUSTED_PERCENT,TOTAL_TAX,TOTAL_SHIPPING_CHARGE,SURCHARGE,TOTAL_QUOTE_PRICE— the quotation pricing totals.TOTAL_ADJUSTED_PERCENTexpresses total adjustment as a percentage of list price, and is the column users commonly search for when reconciling quote-level discounting.CURRENCY_CODE,EXCHANGE_RATE,EXCHANGE_TYPE_CODE,EXCHANGE_RATE_DATE— currency conversion context.PARTY_ID,CUST_ACCOUNT_ID,INVOICE_TO_PARTY_SITE_ID,SOLD_TO_PARTY_SITE_ID— trading-partner and site relationships.CONTRACT_ID,CONTRACT_TEMPLATE_ID,CONTRACT_REQUESTER_ID,CONTRACT_APPROVAL_LEVEL— contract linkage.ORDER_ID,ORDER_TYPE_ID,PRICE_LIST_ID,SALES_CHANNEL_CODE,RESOURCE_ID,RESOURCE_GRP_ID— downstream order and assignment references.PUBLISH_FLAG,MAX_VERSION_FLAG,OBJECT_VERSION_NUMBER— publication and optimistic-locking controls.ATTRIBUTE_CATEGORY,ATTRIBUTE1–ATTRIBUTE15— descriptive flexfield segments.
Common Use Cases and Queries
Typical scenarios include extracting quote headers for a data warehouse, feeding a custom quotation report, or reconciling pricing totals. Because the view carries MOAC filtering, org-scoped queries should always constrain ORG_ID (or rely on the SQL enforcement of the reporting tool). A representative query filtering on the searched column is:
SELECT QUOTE_NUMBER, QUOTE_NAME, CURRENCY_CODE, TOTAL_LIST_PRICE, TOTAL_ADJUSTED_AMOUNT, TOTAL_ADJUSTED_PERCENT, TOTAL_QUOTE_PRICE FROM ASO_QUOTE_HEADERS_ALL_V WHERE ORG_ID = :p_org_id AND TOTAL_ADJUSTED_PERCENT IS NOT NULL ORDER BY LAST_UPDATE_DATE DESC;- Version control: joining the view to itself on QUOTE_HEADER_ID filtered by
MAX_VERSION_FLAG = 'Y'orPUBLISH_FLAGto report only the current published quotation. - Order conversion tracking: filtering on
ORDER_ID IS NOT NULLto list quotations already converted to orders, keyed by ORDER_TYPE_ID and SALES_CHANNEL_CODE. - Flexfield reporting: selecting ATTRIBUTE_CATEGORY and ATTRIBUTE1–15 for organization-specific quotation attributes.
-
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: 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: XNC_ORD_QUOTENUM_NAV
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: View used to define the attribute fields for an AK object for construction of the Quote Navigator tree , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ORD_QUOTENUM_NAV
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: View used to define the attribute fields for an AK object for construction of the Quote Navigator tree , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ORD_QUOTENUMS_NAV
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: View used to define the attribute fields for an AK object for construction of the Quote Navigator tree , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ORD_QUOTENUMS_NAV
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: View used to define the attribute fields for an AK object for construction of the Quote Navigator tree , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ORD_QUOTETYP_NAV
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: View used to define the attribute fields for an AK object for construction of the Quote Navigator tree , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ORD_QUOTETYP_NAV
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: View used to define the attribute fields for an AK object for construction of the Quote Navigator tree , implementation_dba_data: Not implemented in this database ,
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.ASO_QUOTE_HEADERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:ASO_QUOTE_HEADERS, status:VALID,
-
SYNONYM: APPS.ASO_QUOTE_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:ASO_QUOTE_HEADERS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
View: XNC_QUOTE_SHIPMENTS_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: XNC_QUOTE_SHIPMENTS_V retrieves full quote shipment details. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_QUOTE_SHIPMENTS_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: XNC_QUOTE_SHIPMENTS_V retrieves full quote shipment details. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_QUOTE_HEADERS_RG_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: XNC_QUOTE_HEADERS_RG_V retrieves limited quote detail. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_QUOTE_HEADERS_RG_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: XNC_QUOTE_HEADERS_RG_V retrieves limited quote detail. , implementation_dba_data: Not implemented in this database ,
-
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: 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,
-
APPS.OKC_RENEW_PVT SQL Statements
12.1.1
-
APPS.OKC_RENEW_PVT SQL Statements
12.2.2
-
APPS.OKC_RENEW_PVT dependencies on OKC_OC_INT_QTK_PVT
12.2.2
-
APPS.OKC_RENEW_PVT dependencies on OKC_OC_INT_QTK_PVT
12.1.1
-
eTRM - ASO Tables and Views
12.2.2
description: This tables is used to log messages during the migration in Order Capture. ,
-
eTRM - ASO Tables and Views
12.1.1
description: This tables is used to log messages during the migration in Order Capture. ,
-
PACKAGE BODY: APPS.OKC_RENEW_PVT
12.1.1
-
PACKAGE BODY: APPS.OKC_RENEW_PVT
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - ASO Tables and Views
12.2.2
description: This tables is used to log messages during the migration in Order Capture. ,
-
eTRM - ASO Tables and Views
12.1.1
description: This tables is used to log messages during the migration in Order Capture. ,