Search Results ar_deferred_lines




Overview

APPS.AR_LINE_EXCEPTIONS_V is a reporting view in Oracle E-Business Suite Receivables (AR) that consolidates exception-related information for deferred revenue lines on customer transactions. Its role is to expose transaction lines where revenue recognition has been deferred but where a manual override has been applied and the line is flagged as non-collectible. These conditions signify exceptions to the standard revenue recognition flow, and the view assembles the supporting accounting, customer, and transaction context required for review by revenue accountants, collections staff, and integration processes.

The view draws its name from the "line exceptions" concept: lines that depart from automated revenue treatment and require analyst attention. Because the query aggregates by lrs.customer_trx_line_id, each row of the view represents a single deferred transaction line with its associated balances and reference attributes condensed into a reviewable record. It is commonly consumed in Receivables reporting, reconciliation, and ad hoc queries related to deferred revenue and credit memo activity.

Underlying Base Objects

The view is defined over the documented base objects AR_DEFERRED_LINES, RA_CUSTOMER_TRX_LINES, RA_CUSTOMER_TRX, RA_RULES, RA_CUST_TRX_LINE_GL_DIST, GL_SETS_OF_BOOKS, HZ_CUST_ACCOUNTS, and HZ_PARTIES, and it invokes the packages ARPT_SQL_FUNC_UTIL and ARP_BAL_UTIL.

  • AR_DEFERRED_LINES supplies the deferred line balances and the filter criteria line_collectible_flag = 'N' and manual_override_flag = 'Y'.
  • RA_CUSTOMER_TRX_LINES and RA_CUSTOMER_TRX provide line and transaction details such as number, date, description, and sales credit.
  • RA_RULES is outer-joined to supply the accounting rule name.
  • RA_CUST_TRX_LINE_GL_DIST appears twice: once (gldist) for the receivable distribution and once (gldist2) for unearned and revenue distributions.
  • GL_SETS_OF_BOOKS, HZ_CUST_ACCOUNTS, and HZ_PARTIES contribute ledger and customer identification.
  • ARPT_SQL_FUNC_UTIL supplies reference numbers and salesrep names; ARP_BAL_UTIL computes the line credit memo amount.

Key Columns

Common Use Cases and Queries

Typical scenarios include reviewing manually overridden deferred lines, reconciling unearned revenue against the general ledger, and auditing non-collectible transaction lines.

Sample query listing customer-facing exception lines:

SELECT customer_name, trx_number, line_number,
       unearned_revenue, revenue, rule_name
  FROM apps.ar_line_exceptions_v
 WHERE currency_code = 'USD'
 ORDER BY trx_date;

Reconciliation aggregate:

SELECT set_of_books_name, rule_name,
       SUM(unearned_revenue) unearned,
       SUM(revenue) recognized
  FROM apps.ar_line_exceptions_v
 GROUP BY set_of_books_name, rule_name;

Because the view performs heavy aggregation and function calls, queries should be filtered on SET_OF_BOOKS_ID or TRX_DATE to limit processing cost.