Search Results quote_lines
Overview
APPS.ASO_QUOTE_LINES_V is a reporting and integration view in the Oracle E-Business Suite Order-to-Cash (formerly ETRM / Advanced Pricing and Sales) module. It exposes quote line information maintained by Oracle Quoting (ASO), presenting one row per quote line along with denormalized descriptive attributes such as item type meaning. The view is defined in the APPS schema and is intended primarily for query, reporting, and downstream integration consumption rather than for direct transactional DML. It surfaces the core pricing, quantity, and reference columns needed to reconstruct a quote line without repeatedly joining to lookup and price list tables.
Underlying Base Objects
The view is defined over the following documented base objects:
- ASO_QUOTE_LINES (SYNONYM) — the primary base table supplying most columns, including identities, dates, WHO audit columns, quantity, UOM, pricing attributes, and invoice-to references.
- ASO_QUOTE_LINE_DETAILS (SYNONYM) — supplementary quote line detail information joined into the view.
- ASO_LOOKUPS (VIEW) — provides the decoded MEANING used to populate the derived ITEM_TYPE column from ITEM_TYPE_CODE.
- ASO_I_ITEMS_V (VIEW) and ASO_I_PRICE_LISTS_V (VIEW) — item and price list views used in the definition; the price list view supplies PRICE_LIST_NAME.
- QP_PRICE_LIST_PVT (PACKAGE) — pricing engine package referenced by the view logic.
The view therefore consolidates transactional quote line data with descriptive lookups and pricing metadata, shielding consumers from the underlying join complexity.
Key Columns
- QUOTE_LINE_ID / QUOTE_HEADER_ID — primary identifier of the line and its parent quote header.
- ROW_ID — the ROWID of the base ASO_QUOTE_LINES row.
- LINE_NUMBER — display sequence of the line within the quote.
- LINE_CATEGORY_CODE and ITEM_TYPE_CODE / ITEM_TYPE — categorization; ITEM_TYPE is the decoded meaning from ASO_LOOKUPS.
- INVENTORY_ITEM_ID / ORGANIZATION_ID / QUANTITY / UOM_CODE — item and quantity details.
- PRICE_LIST_ID / PRICE_LIST_NAME / PRICE_LIST_LINE_ID — pricing source references.
- CURRENCY_CODE, LINE_LIST_PRICE, LINE_ADJUSTED_AMOUNT, LINE_ADJUSTED_PERCENT, LINE_QUOTE_PRICE — pricing and adjustment measures.
- START_DATE_ACTIVE / END_DATE_ACTIVE — effective dating for the line.
- INVOICE_TO_PARTY_ID, INVOICE_TO_PARTY_SITE_ID, INVOICE_TO_CUST_ACCOUNT_ID, INVOICE_TO_CUST_PARTY_ID — invoice-to references.
- ACCOUNTING_RULE_ID / INVOICING_RULE_ID — billing rule references.
- SPLIT_SHIPMENT_FLAG / BACKORDER_FLAG / LINE_TYPE_SOURCE_FLAG — processing flags.
- ORG_ID and WHO/audit columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, etc.) — multi-org and audit context.
Common Use Cases and Queries
Typical uses include quote line extracts for BI Publisher reports, pricing analysis, and integration feeds into order capture. Because the view already joins item type meaning and price list name, it is convenient for reporting without additional lookups. A representative query retrieving active quote lines for a header follows:
SELECT quote_line_id, line_number, item_type, quantity, uom_code, currency_code, line_quote_price FROM apps.aso_quote_lines_v WHERE quote_header_id = :p_header_id ORDER BY line_number;SELECT ql.quote_header_id, ql.line_number, ql.price_list_name, ql.line_adjusted_amount FROM apps.aso_quote_lines_v ql WHERE ql.org_id = :p_org_id AND ql.start_date_active <= SYSDATE AND NVL(ql.end_date_active, SYSDATE) >= SYSDATE;
Reports commonly filter on ORG_ID for multi-org security and on START_DATE_ACTIVE/END_DATE_ACTIVE for effective-dated selections. As the view is read-oriented, integrations should consume it for extraction only.
-
VIEW: APPS.ASO_QUOTE_LINES_V
12.1.1
-
View: AST_LS_QUOTES_LINES_V
12.2.2
product: AST - TeleSales , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.ASO_QUOTE_LINES_V
12.2.2
-
View: ASO_QUOTE_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_QUOTE_LINES_V, object_name:ASO_QUOTE_LINES_V, status:VALID, product: ASO - Order Capture , description: quote lines , implementation_dba_data: APPS.ASO_QUOTE_LINES_V ,
-
View: AST_LS_QUOTES_LINES_V
12.1.1
product: AST - TeleSales , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.ASO_PVT_QUOTE_LINES_UI_V
12.2.2
-
VIEW: APPS.ASO_PVT_QUOTE_LINES_UI_V
12.1.1
-
View: ASO_QUOTE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_QUOTE_LINES_V, object_name:ASO_QUOTE_LINES_V, status:VALID, product: ASO - Order Capture , description: quote lines , implementation_dba_data: APPS.ASO_QUOTE_LINES_V ,
-
VIEW: APPS.ASO_PVT_QUOTE_LINES_BALIVIEW_V
12.1.1
-
VIEW: APPS.ASO_PVT_QUOTE_LINES_BALIVIEW_V
12.2.2
-
TABLE: APPS.MLOG$_IBE_BI_CARTS_MV
12.1.1
owner:APPS, object_type:TABLE, object_name:MLOG$_IBE_BI_CARTS_MV, status:VALID,
-
VIEW: APPS.ASO_PVT_QUOTE_LINES_V
12.2.2
-
VIEW: APPS.ASO_PVT_QUOTE_LINES_V
12.1.1
-
View: XNC_QUOTE_FIND_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: This View retrieves the Quote Details such as Party Information, Quote Deails, Account Details and Subscription information.This is currently used in the Quote Search Window. , implementation_dba_data: Not implemented in this database ,
-
TABLE: APPS.IBE_BI_CARTS_MV
12.1.1
owner:APPS, object_type:TABLE, object_name:IBE_BI_CARTS_MV, status:VALID,
-
View: XNC_QUOTE_FIND_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: This View retrieves the Quote Details such as Party Information, Quote Deails, Account Details and Subscription information.This is currently used in the Quote Search Window. , implementation_dba_data: Not implemented in this database ,
-
MATERIALIZED VIEW: APPS.IBE_BI_CART_ORD_MV
12.1.1
-
View: ASO_PVT_QUOTE_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_PVT_QUOTE_LINES_V, object_name:ASO_PVT_QUOTE_LINES_V, status:VALID, product: ASO - Order Capture , implementation_dba_data: APPS.ASO_PVT_QUOTE_LINES_V ,
-
MATERIALIZED VIEW: APPS.IBE_BI_CARTS_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:IBE_BI_CARTS_MV, status:VALID,
-
View: ASO_PVT_QUOTE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_PVT_QUOTE_LINES_V, object_name:ASO_PVT_QUOTE_LINES_V, status:VALID, product: ASO - Order Capture , implementation_dba_data: APPS.ASO_PVT_QUOTE_LINES_V ,
-
View: ASO_PVT_QUOTE_LINES_BALIVIEW_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_PVT_QUOTE_LINES_BALIVIEW_V, object_name:ASO_PVT_QUOTE_LINES_BALIVIEW_V, status:VALID, product: ASO - Order Capture , implementation_dba_data: APPS.ASO_PVT_QUOTE_LINES_BALIVIEW_V ,
-
View: AST_LS_QUOTES_V
12.1.1
product: AST - TeleSales , implementation_dba_data: Not implemented in this database ,
-
View: ASO_PVT_QUOTE_LINES_BALIVIEW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_PVT_QUOTE_LINES_BALIVIEW_V, object_name:ASO_PVT_QUOTE_LINES_BALIVIEW_V, status:VALID, product: ASO - Order Capture , implementation_dba_data: APPS.ASO_PVT_QUOTE_LINES_BALIVIEW_V ,
-
View: ASO_PVT_QUOTE_LINES_BALI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_PVT_QUOTE_LINES_BALI_V, object_name:ASO_PVT_QUOTE_LINES_BALI_V, status:VALID, product: ASO - Order Capture , implementation_dba_data: APPS.ASO_PVT_QUOTE_LINES_BALI_V ,
-
View: AST_LS_QUOTES_V
12.2.2
product: AST - TeleSales , implementation_dba_data: Not implemented in this database ,
-
View: ASO_PVT_QUOTE_LINES_BALI_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_PVT_QUOTE_LINES_BALI_V, object_name:ASO_PVT_QUOTE_LINES_BALI_V, status:VALID, product: ASO - Order Capture , implementation_dba_data: APPS.ASO_PVT_QUOTE_LINES_BALI_V ,
-
VIEW: APPS.ASO_PVT_QUOTE_LINES_NUM_V
12.2.2
-
VIEW: APPS.ASO_PVT_QTE_LINES_PRINT_NUM_V
12.2.2
-
VIEW: APPS.ASO_PVT_QUOTE_LINES_NUM_V
12.1.1
-
VIEW: APPS.ASO_PVT_QTE_LINES_PRINT_NUM_V
12.1.1
-
MATERIALIZED VIEW: APPS.IBE_BI_CARTS_MV
12.1.1
-
PACKAGE BODY: APPS.OKL_AM_TERMNT_INTERFACE_PVT
12.1.1
-
PACKAGE BODY: APPS.OKL_AM_TERMNT_INTERFACE_PVT
12.2.2
-
APPS.OKL_AM_TERMNT_INTERFACE_PVT dependencies on OKL_AM_TERMNT_INTERFACE_PVT
12.2.2
-
APPS.OKL_AM_TERMNT_INTERFACE_PVT dependencies on FND_LOG
12.2.2
-
PACKAGE BODY: APPS.ASO_QUOTE_LINES_PVT
12.2.2
-
PACKAGE BODY: APPS.ASO_QUOTE_LINES_PVT
12.1.1
-
APPS.ASO_QUOTE_LINES_PVT dependencies on ASO_DEBUG_PUB
12.2.2
-
APPS.ASO_QUOTE_LINES_PVT dependencies on ASO_DEBUG_PUB
12.1.1