Search Results conversion_rate_date




Overview

ASO_I_OE_ORDER_HEADERS_V is an APPS-owned database view in Oracle E-Business Suite, assigned to the ASO - Order Capture product family. According to Oracle's documented metadata, the view "includes all columns from the Oracle Order Management tables and is currently used by Oracle Sales Compensation only." This statement of scope is significant: although the view exposes the full header structure of Order Management order headers, its intended consumer within the E-Business Suite application itself is limited to Sales Compensation processing. In practice, the view is a pass-through projection over the order header data model, and it is most commonly encountered by developers and analysts as an integration and reporting access point for order header data rather than as a functional business object in its own right.

In EBS 12.1.1 and 12.2.2 the object retains a VALID status and the same owner (APPS) in the ETRM repository. Because Order Management in 12.2.x continues to store order headers in OE_ORDER_HEADERS, the view's column set remains aligned with the 11i and 12.1 lineage of that table, which means the view is stable across the 12.1.1 and 12.2.2 releases for the columns it exposes.

Underlying Base Objects

The ETRM metadata documents a single referenced base object: OE_ORDER_HEADERS, accessed through a synonym. The view text confirms this relationship, since the projection consists entirely of columns that are native to the Order Management order headers entity — HEADER_ID, ORG_ID, ORDER_TYPE_ID, ORDER_NUMBER, the sold-to/ship-to/invoice-to organization and contact identifiers, and the standard WHO audit columns. There is no join, aggregation, or filter expression documented in the view definition, so the view behaves as a column-list projection rather than as a transformed or denormalized data set.

Two consequences follow. First, the row grain of the view is identical to OE_ORDER_HEADERS: one row per order header record, keyed by HEADER_ID. Second, any data visible in the view is a direct reflection of the underlying header table at query time; no additional business logic is applied. Because the view is owned by APPS and built on a synonym, grants and synonyms determine visibility for custom reporting users, and the ordering of columns in a SELECT * will follow the view definition rather than the base table definition.

Key Columns

Common Use Cases and Queries

The principal use case is Sales Compensation extraction and order header reporting where a read-only projection of OE_ORDER_HEADERS is required without exposing the base table directly. Typical queries retrieve order headers for a given operating unit and date range, or join to lines to build booking and revenue extracts.

  • Header extract by operating unit and date:
SELECT header_id, order_number, org_id, ordered_date,
       sold_to_org_id, transactional_curr_code
FROM   apps.aso_i_oe_order_headers_v
WHERE  org_id = :p_org_id
AND    ordered_date >= :p_from_date;
  • Descriptive flexfield inquiry (the "tp_attribute1" scenario). DFF segments are surfaced through the ATTRIBUTE columns, whose meaning depends on the context/segment mapping in the flexfield definition. A common diagnostic query inspects the raw segment values:
SELECT order_number, context, attribute1, attribute2, attribute3
FROM   apps.aso_i_oe_order_headers_v
WHERE  attribute1 IS NOT NULL
AND    org_id = :p_org_id;
  • Join to order lines for a line-level extract:
SELECT h.order_number, l.line_number, l.ordered_quantity
FROM   apps.aso_i_oe_order_headers_v h,
       apps.oe_order_lines_all l
WHERE  h.header_id = l.header_id;

Because the view is documented as a straight projection of OE_ORDER_HEADERS, queries against it can generally be rewritten against the base table with equivalent results. Reporting users should confirm the specific DFF context and segment mapping before interpreting any ATTRIBUTE column, since the same column carries different meanings across flexfield contexts.

  • View: ASO_I_OE_ORDER_HEADERS_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:ASO.ASO_I_OE_ORDER_HEADERS_V,  object_name:ASO_I_OE_ORDER_HEADERS_V,  status:VALID,  product: ASO - Order Capturedescription: This view includes all columns from the Oracle Order Management tables and is currently used by Oracle Sales Compensation only. ,  implementation_dba_data: APPS.ASO_I_OE_ORDER_HEADERS_V

  • View: ASO_I_OE_ORDER_HEADERS_V 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:ASO.ASO_I_OE_ORDER_HEADERS_V,  object_name:ASO_I_OE_ORDER_HEADERS_V,  status:VALID,  product: ASO - Order Capturedescription: This view includes all columns from the Oracle Order Management tables and is currently used by Oracle Sales Compensation only. ,  implementation_dba_data: APPS.ASO_I_OE_ORDER_HEADERS_V