Results for “unapplied_amount”

4 results




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

IBE_PAYMENT_HEADER_V is a reporting view owned by the APPS schema in Oracle E-Business Suite releases 12.1.1 and 12.2.2. It is published under the IBE (iStore) product and exists to present a consolidated, customer-facing picture of receipt (payment) headers originating in Oracle Receivables. Because iStore order capture must reflect funds already received against a customer account, this view flattens the Receivables cash receipt, payment schedule, and receivable application data into a single denormalized row per cash receipt, exposing a stable column list that iStore pages and integrations can query directly.

The distinguishing feature of the view, and the reason it is frequently located through the search term "unapplied_amount", is its computed UNAPPLIED_AMOUNT column. Rather than requiring the caller to join AR_RECEIVABLE_APPLICATIONS_ALL and reason about application status codes, the view aggregates that logic internally and returns the remaining unapplied balance of the receipt. The view is documented as VALID and follows the standard Oracle view convention of exposing display-oriented aliases (for example CUSTOMER_NAME and TYPE) in place of raw column names.

Underlying Base Objects

The view is defined over six documented base objects, joining Receivables and Trading Community (HZ) entities:

The outer joins mean a receipt can still appear even when it has no matching customer account or payment schedule, which is important for reconciliation reporting where orphaned or partially configured receipts must not be silently dropped.

Key Columns

  • CASH_RECEIPT_ID — the Receivables receipt identifier; the view's grouping key.
  • RECEIPT_NUMBER — the user-visible receipt number.
  • CUST_ACCOUNT_ID / PARTY_ID / CUSTOMER_NAME — the customer account, party, and display name of the remitter.
  • AMOUNT — the receipt amount as recorded in AR_CASH_RECEIPTS_ALL.
  • TYPE — the decoded payment category meaning derived from AR_LOOKUPS.
  • APPLIED_AMOUNT — the payment-schedule applied amount (ABS of PS.AMOUNT_APPLIED).
  • RECEIPT_DATE / DUE_DATE — receipt and schedule due dates.
  • CURRENCY_CODE — the receipt currency.
  • UNAPPLIED_AMOUNT — the sum of amount applied across applications whose status is 'UNAPP'; this is the on-account / unapplied remainder.
  • CREATED_BY / ORG_ID — audit and operating unit context.

Common Use Cases and Queries

Typical usage is to display a customer's received payments alongside how much remains unapplied, and to feed downstream logic that consumes on-account credit. A representative query filtering by unapplied balance:

  • SELECT cash_receipt_id, receipt_number, customer_name, amount, currency_code, unapplied_amount FROM apps.ibe_payment_header_v WHERE unapplied_amount > 0;
  • SELECT receipt_number, receipt_date, type, applied_amount, unapplied_amount FROM apps.ibe_payment_header_v WHERE cust_account_id = :p_account_id ORDER BY receipt_date DESC;
  • SELECT org_id, currency_code, SUM(unapplied_amount) FROM apps.ibe_payment_header_v GROUP BY org_id, currency_code;

Because UNAPPLIED_AMOUNT is aggregated by cash receipt, the view is well suited to iStore credit-balance checks and to reporting that reconciles applied versus unapplied receipt value within an operating unit.