Search Results inv_rev_num




Overview

APPS.PA_UBR_UER_ACCT_DTLS_V is a reporting view in Oracle EBS Projects (PA) that exposes the accounting detail behind Unbilled Receivable (UBR) and Unearned Revenue (UER) processing. It joins the UBR/UER summary accounting table (PA_UBR_UER_SUMM_ACCT) to the originating draft invoice and draft invoice item records, then links the resulting rows to their corresponding General Ledger journal lines, headers, and batches. The view presents, in a single denormalized result set, the project, project type, cost center and account segments, the transaction type (UBR or UER), the associated invoice/revenue number, and the GL distribution amounts and identifiers.

The view is chiefly used for reconciliation and audit reporting. It answers questions such as: which GL journals were generated for a given UBR or UER summary, what invoice number (inv_rev_num) is tied to that accounting entry, and how the accounted amounts compare to the receivable distribution in AR. Because it bridges Projects and General Ledger, it is heavily used in period-end subledger-to-GL reconciliation, and in support of Oracle subledger accounting diagnostics for unearned and unbilled revenue.

Underlying Base Objects

The view is defined over the following documented objects:

The joins are driven from the summary accounting table to the draft invoice by project and by UBR/UER summary identifier, then to the AR distribution via matching CODE_COMBINATION_ID, and on to GL journal lines via the journal reference columns and period name. This chain is what ties a Projects accounting event to its GL posting.

Key Columns

Common Use Cases and Queries

Typical uses include locating the accounting detail for a specific invoice or revenue number, reconciling UBR/UER balances to GL, and auditing unearned or unbilled revenue by period. A representative query to locate a transaction by invoice/revenue number is:

SELECT project_id, segment1, name, type, inv_rev_num, amount, gl_header_id, gl_line_num, gl_period_name
FROM apps.pa_ubr_uer_acct_dtls_v
WHERE inv_rev_num = :invoice_number;

To review all UBR/UER activity for a period, filtering on gl_period_name and grouping by type yields period-to-date totals. Reconciliation queries join amount against GL_JE_LINES balances for the same header and line. Because the view joins numerous tables and applies sign-based decode logic for UBR versus UER, queries should filter on indexed columns such as project or invoice number and period to limit result sets. Note that the view text is documented only in excerpt form, so consumers should validate the exact join and filter behavior against the deployed 12.1.1/12.2.2 instance before relying on it for automated reconciliation.