Search Results backorder_flag
Overview
ASO_QUOTE_LINES_ALL_V is a reporting and integration view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the ASO – Order Capture product family. It exposes quote line information captured in the Oracle Quoting and Order Capture modules and is documented with a status of VALID in ETRM for releases 12.1.1 and 12.2.2. Because the view is defined over a synonym that resolves to the base transactional entity, it provides a stable, read-oriented projection of quote lines without requiring consumers to reference the underlying table directly.
The view is multi-organization aware: ORG_ID is exposed as a column, so a single query can address quote lines across operating units when the appropriate MO security profile or explicit predicate is supplied. This makes the view suitable for operational reports, order-to-quote reconciliation, pricing analysis, and outbound interfaces that must read committed quote line data.
Underlying Base Objects
The documented metadata identifies a single referenced base object: the synonym ASO_QUOTE_LINES. In a standard 12.1.1 or 12.2.2 environment this synonym resolves to the APPS-owned base table that stores quote lines. The view text is a straight column projection — every column listed in the definition is drawn unchanged from that base object, with no joins, unions, or aggregation applied. Consequently, the view adds no transformation or filtering layer; it serves as a naming and access abstraction over the physical table, and row counts and cardinality match the underlying entity exactly. Because no outer joins are present, records are returned one-for-one for each quote line stored.
Key Columns
- QUOTE_LINE_ID — primary identifier for the quote line; the join key to child entities and the most common filter in point lookups.
- QUOTE_HEADER_ID — foreign key to the parent quote header, used to group lines into their owning quote.
- ORG_ID — operating unit identifier supporting multi-org reporting.
- LINE_NUMBER, LINE_CATEGORY_CODE, ITEM_TYPE_CODE — sequencing and classification of the line within the quote.
- INVENTORY_ITEM_ID, ORGANIZATION_ID, QUANTITY, UOM_CODE — the item, inventory organization, quantity, and unit of measure ordered on the line.
- CURRENCY_CODE, PRICE_LIST_ID, PRICE_LIST_LINE_ID, LINE_LIST_PRICE, LINE_ADJUSTED_AMOUNT, LINE_ADJUSTED_PERCENT, LINE_QUOTE_PRICE — pricing context, list price, adjustments, and the resulting quoted price.
- SPLIT_SHIPMENT_FLAG — the flag that indicates whether the line is permitted to be fulfilled by more than one shipment; this is the attribute users most commonly search for when reconciling fulfillment behavior against quote intent.
- BACKORDER_FLAG — indicates whether the line may be backordered when stock is unavailable.
- INVOICE_TO_PARTY_ID, INVOICE_TO_PARTY_SITE_ID, INVOICE_TO_CUST_ACCOUNT_ID — the invoicing party, site, and customer account for the line.
- ACCOUNTING_RULE_ID, INVOICING_RULE_ID — rules governing revenue recognition and invoicing for the line.
- RELATED_ITEM_ID, ITEM_RELATIONSHIP_TYPE — used for related or bundled item scenarios.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 — the descriptive flexfield segment set for client-specific extensions.
- MINISITE_ID, SECTION_ID, PRICED_PRICE_LIST_ID, AGREEMENT_ID, COMMITMENT_ID, DISPLAY_ARITHMETIC_OPERATOR — quoting-presentation, price list, and agreement/commitment context exposed after the flexfield columns.
- Standard WHO columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, and the REQUEST_ID / PROGRAM_APPLICATION_ID / PROGRAM_ID / PROGRAM_UPDATE_DATE concurrent program set for audit and lineage.
Common Use Cases and Queries
Typical uses include reporting on quote line pricing, exporting quote lines to a data warehouse, and auditing shipment-splitting and backorder settings. A representative query retrieving lines for a specific quote is:
- SELECT quote_line_id, quote_header_id, line_number, inventory_item_id, quantity, uom_code, line_quote_price, split_shipment_flag, backorder_flag FROM aso_quote_lines_all_v WHERE quote_header_id = :p_quote_header_id ORDER BY line_number;
- SELECT quote_line_id, quote_header_id, currency_code, line_list_price, line_adjusted_amount, line_quote_price FROM aso_quote_lines_all_v WHERE org_id = :p_org_id AND last_update_date >= :p_since;
- SELECT inventory_item_id, COUNT(*) FROM aso_quote_lines_all_v WHERE split_shipment_flag = 'Y' GROUP BY inventory_item_id;
-
View: ASO_QUOTE_LINES_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_QUOTE_LINES_ALL_V, object_name:ASO_QUOTE_LINES_ALL_V, status:VALID, product: ASO - Order Capture , description: quote lines , implementation_dba_data: APPS.ASO_QUOTE_LINES_ALL_V ,
-
View: ASO_QUOTE_LINES_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_QUOTE_LINES_ALL_V, object_name:ASO_QUOTE_LINES_ALL_V, status:VALID, product: ASO - Order Capture , description: quote lines , implementation_dba_data: APPS.ASO_QUOTE_LINES_ALL_V ,
-
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: 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: 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 ,
-
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 ,