Search Results al_class




Overview

APPS.IBE_INVOICE_HEADER_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, registered under FND Design Data as IBE.IBE_INVOICE_HEADER_V. It exposes invoice header information drawn primarily from Oracle Receivables and Oracle iStore-related sources, presenting a denormalized, read-oriented projection of customer transaction data at the header level. The view is marked VALID with an internal view type, and Oracle explicitly designates it for internal use only: the documentation warns that Oracle Corporation does not support access to applications data through this object except from standard Oracle Applications programs.

The view is intended for consumption by Oracle iStore and related application modules that need a concise invoice header record for display, integration, or reporting purposes. Because it is not referenced by any other database object, it functions as a terminal, consumer-facing object rather than a shared building block within the dependency chain. The column of particular interest to users searching for freight_original is FREIGHT_ORIGINAL, a NUMBER column that carries the original freight amount associated with the invoice header before any adjustments, applications, or credits are applied.

Underlying Base Objects

The view is defined over four documented base objects:

  • RA_CUSTOMER_TRX_ALL (SYNONYM) — the core Oracle Receivables table holding customer transaction headers, including transaction number, date, currency, type, and original amount components such as freight.
  • AR_PAYMENT_SCHEDULES_ALL (SYNONYM) — the Receivables payment schedule table, supplying amounts due, remaining balances, applied, credited, and adjusted figures.
  • HZ_CUST_ACCOUNTS (SYNONYM) — the Trading Community Architecture customer account table, providing account identifiers and party linkage.
  • AR_LOOKUPS (VIEW) — the Receivables lookup view, used to resolve transaction type and related code meanings into displayable values.

Conceptually, the view joins transaction headers to their payment schedules and customer account records, resolving lookup values along the way. This join structure explains both the breadth of header amounts it exposes and the join to customer identity columns such as PARTY_ID and CUST_ACCOUNT_ID.

Key Columns

The view returns a mix of identifiers, dates, amounts, and descriptive attributes:

Common Use Cases and Queries

Typical uses include iStore invoice display, customer-facing statements, and integration extracts requiring freight, tax, and line amounts at the header level. To isolate freight values:

  • Query by transaction number: SELECT trx_number, freight_original FROM apps.ibe_invoice_header_v WHERE trx_number = :trx_number;
  • Aggregate freight by currency: SELECT invoice_currency_code, SUM(freight_original) FROM apps.ibe_invoice_header_v GROUP BY invoice_currency_code;
  • Reconcile components: SELECT trx_number, amount_line_items_original, tax_original, freight_original FROM apps.ibe_invoice_header_v WHERE org_id = :org_id;

Because the view is documented as Oracle Internal Use Only, custom code should prefer supported Receivables interfaces where feasible. Where direct access is permitted, ORG_ID should always be supplied to preserve multi-org security.