Search Results pricing_attribute1
Overview
The AS_QUOTE_LINES view is a multi-organization (multi-org) reporting and integration object within the Oracle E-Business Suite Sales Foundation (AS) module. It exposes quote line data from the Oracle Sales and Oracle Order Management quotation functionality, presenting one row per quotation line. Because quotations represent pre-order pricing and configuration records, this view is the canonical read-only interface for extracting line-level quote detail for downstream reporting, pricing analysis, and integration into external systems.
The object is described in ETRM documentation as "Quotation lines view (multi-org)" and is documented as not implemented in the reference database — meaning it exists in typical EBS 12.1.1 / 12.2.2 installations as a seeded view but may be absent in stripped or non-AS environments. Its multi-org behavior is enforced through the ORG_ID column and the standard USERENV('CLIENT_INFO') predicate, restricting visible rows to the operating unit context of the session.
The search term line_list_price maps directly to the LINE_LIST_PRICE column exposed by this view, which is one of the core pricing attributes available for each quotation line.
Underlying Base Objects
The view is defined entirely over a single base table, AS_QUOTE_LINES_ALL, which stores quotation line records for all operating units. The view predicate applies the standard multi-org security filter:
- The
WHEREclause comparesNVL(ORG_ID, -99)against the operating unit derived fromSUBSTRB(USERENV('CLIENT_INFO'), 1, 10), defaulting to-99when no context is set. - This pattern is consistent with Oracle's Multi-Org architecture, where the
_ALLtable holds data across organizations and the non-suffixed view restricts access to the current organization. - No additional joins, base views, or synonyms are documented in the ETRM metadata; the projection is a direct column pass-through from
AS_QUOTE_LINES_ALL.
Key Columns
- QUOTE_LINE_ID — Primary key identifying each quotation line.
- QUOTE_ID — Foreign key to the parent quotation header.
- INVENTORY_ITEM_ID / ORGANIZATION_ID — Item and inventory organization context for the quoted line.
- LINE_LIST_PRICE — The list price for the quotation line, before discounts. This is the column most relevant to the user's search.
- LINE_QUOTE_PRICE — The actual quoted (net) price for the line.
- LINE_DISCOUNT_AMOUNT, LINE_DISCOUNT_PERCENT, LINE_DISCOUNT_MTHD_CODE — Discount magnitude and method applied to derive quote price from list price.
- PRICE_LIST_ID / PRICE_LIST_LINE_ID — Source price list and price list line used for pricing.
- CURRENCY_CODE, EXCHANGE_RATE — Transaction currency and conversion rate.
- QUANTITY, UOM_CODE, SHIPPED_QUANTITY — Ordered, unit of measure, and fulfillment quantities.
- ORG_ID — Operating unit identifier driving multi-org visibility.
- PRICING_CONTEXT and PRICING_ATTRIBUTE1..15 — Extensible pricing context descriptors.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1..15 — Descriptive flexfield columns for customer-defined data.
- START_DATE_ACTIVE / END_DATE_ACTIVE — Effective dating for the line.
- TAX_CODE, TAX_EXEMPT_NUM, TAX_EXEMPT_REASON_CODE — Tax determination attributes.
Common Use Cases and Queries
Typical uses include quote-to-order reconciliation, list price versus net price margin analysis, and loading quote lines into a data warehouse or CRM. A representative query retrieving list price and discount detail for a quotation is:
SELECT quote_line_id, quote_id, inventory_item_id, line_list_price, line_quote_price, line_discount_percent FROM as_quote_lines WHERE quote_id = :quote_id ORDER BY line_number;SELECT line_list_price, line_quote_price, (line_list_price - line_quote_price) AS line_discount FROM as_quote_lines WHERE org_id = :org_id AND creation_date >= :start_date;SELECT ql.quote_line_id, ql.line_list_price, pl.name FROM as_quote_lines ql, qp_price_lists_vl pl WHERE ql.price_list_id = pl.price_list_id;
Because the view enforces multi-org security, queries executed without an initialized CLIENT_INFO context resolve to ORG_ID = -99 and return no rows. Integrations must therefore set the operating unit context (for example, via FND_GLOBAL.APPS_INITIALIZE or MO_GLOBAL.SET_POLICY_CONTEXT) before querying. All columns are read-only; inserts and updates must target AS_QUOTE_LINES_ALL directly through supported AS APIs.
-
View: AS_QUOTE_LINES
12.1.1
product: AS - Sales Foundation , description: Quotation lines view (multi-org) , implementation_dba_data: Not implemented in this database ,
-
View: AS_QUOTE_LINES
12.2.2
product: AS - Sales Foundation , description: Quotation lines view (multi-org) , implementation_dba_data: Not implemented in this database ,
-
View: AS_QUOTE_PRICE_ITEMS_V
12.2.2
product: AS - Sales Foundation , description: Quote items pricing view , implementation_dba_data: Not implemented in this database ,
-
View: AS_QUOTE_PRICE_ITEMS_V
12.1.1
product: AS - Sales Foundation , description: Quote items pricing view , implementation_dba_data: Not implemented in this database ,
-
View: AS_QUOTE_ITEMS_V
12.1.1
product: AS - Sales Foundation , description: Quote items view , implementation_dba_data: Not implemented in this database ,
-
View: AS_QUOTE_ITEMS_V
12.2.2
product: AS - Sales Foundation , description: Quote items view , implementation_dba_data: Not implemented in this database ,
-
View: AS_QUOTE_LINES_V
12.1.1
product: AS - Sales Foundation , description: Quotation lines view , implementation_dba_data: Not implemented in this database ,
-
View: AS_QUOTE_LINES_V
12.2.2
product: AS - Sales Foundation , description: Quotation lines view , implementation_dba_data: Not implemented in this database ,
-
View: AS_DOSSIER_PRODUCT_LINES_V
12.1.1
product: AS - Sales Foundation , description: Order history product lines view , implementation_dba_data: Not implemented in this database ,
-
View: AS_DOSSIER_PRODUCT_LINES_V
12.2.2
product: AS - Sales Foundation , description: Order history product lines view , implementation_dba_data: Not implemented in this database ,
-
View: AS_DOSSIER_LINES_DETAIL_V
12.2.2
product: AS - Sales Foundation , description: Order history lines detail view , implementation_dba_data: Not implemented in this database ,
-
View: AS_DOSSIER_LINES_DETAIL_V
12.1.1
product: AS - Sales Foundation , description: Order history lines detail view , implementation_dba_data: Not implemented in this database ,
-
View: AS_DOSSIER_LINES_SUMMARY_V
12.2.2
product: AS - Sales Foundation , description: Order history lines summary view , implementation_dba_data: Not implemented in this database ,
-
View: AS_DOSSIER_LINES_SUMMARY_V
12.1.1
product: AS - Sales Foundation , description: Order history lines summary view , implementation_dba_data: Not implemented in this database ,