Search Results hrequest_id




Overview

IBE_ORDER_QUOTE_HEADERS_V is a view in the iStore (IBE) module of Oracle E-Business Suite, exposed in releases 12.1.1 and 12.2.2. It presents quote header information maintained by the iStore quoting functionality, which allows customers, sales representatives, and internal users to create and manage price quotes before an order is actually submitted. The view consolidates header-level attributes of a quote — identification, status, party and account references, pricing and currency data, and descriptive flexfield audit columns — into a single queryable structure.

From a reporting and integration standpoint, the view serves as a stable read interface over the underlying iStore quote tables. Rather than requiring report authors or integration developers to navigate the full normalized table set, the view exposes a flattened, alias-consistent projection (for example, HDR.CREATION_DATE AS HCREATION_DATE) that preserves the logical attribute names expected by the application. This design supports both Oracle-based reporting tools and external integrations that need to retrieve quote header details without joining multiple transactional tables.

Underlying Base Objects

The documented metadata for this view does not list any referenced base objects, and it notes that the view is not implemented in the reference database from which the documentation was generated. The view text, however, is defined as a SELECT over a header source aliased as HDR, which in the standard iStore data model is the quote header table (IBE_QUOTE_HEADERS). Every column in the projection is drawn from that single header source, indicating the view is a header-level only view with no joins to lines, parties, or site tables at the view definition level.

The absence of documented base objects means that dependency analysis must be performed directly against the database using ALL_DEPENDENCIES or the view's stored text, since the ETRM extract available here does not capture the referenced objects. Because the view is described as not implemented in the sampled database, its presence and exact definition should be confirmed in each target instance before it is relied upon in custom code.

Key Columns

Common Use Cases and Queries

Typical uses include retrieving quotes for a specific invoice-to party, producing header-level quote listings by operating unit, and feeding quote data into downstream order or billing analysis.

Query quotes by invoice-to party:

  • SELECT quote_number, quote_name, quote_status_id, total_quote_price, currency_code FROM ibe_order_quote_headers_v WHERE invoice_to_party_id = :party_id AND org_id = :org_id;

List active quotes with totals for an operating unit:

  • SELECT quote_number, invoice_to_party_id, total_list_price, total_adjusted_amount, total_quote_price FROM ibe_order_quote_headers_v WHERE org_id = :org_id ORDER BY ordered_date DESC;

Because the view contains no line-level data, line details must be obtained by joining QUOTE_HEADER_ID to the appropriate quote line object. All queries should be validated in the target instance, given the documentation's note that the view was not implemented in the reference database.