Search Results credit_memos
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_LINESsupplies the deferred line balances and the filter criterialine_collectible_flag = 'N'andmanual_override_flag = 'Y'.RA_CUSTOMER_TRX_LINESandRA_CUSTOMER_TRXprovide line and transaction details such as number, date, description, and sales credit.RA_RULESis outer-joined to supply the accounting rule name.RA_CUST_TRX_LINE_GL_DISTappears twice: once (gldist) for the receivable distribution and once (gldist2) for unearned and revenue distributions.GL_SETS_OF_BOOKS,HZ_CUST_ACCOUNTS, andHZ_PARTIEScontribute ledger and customer identification.ARPT_SQL_FUNC_UTILsupplies reference numbers and salesrep names;ARP_BAL_UTILcomputes the line credit memo amount.
Key Columns
SET_OF_BOOKS_NAME,SET_OF_BOOKS_ID,CURRENCY_CODE— ledger context.CUSTOMER_NAME,CUSTOMER_NUMBER— bill-to customer identity.TRX_NUMBER,TRX_DATE— transaction reference and date.REC_GL_DATE,GL_DATE— receivable and accounting dates.REFERENCE_NUMBER— derived viaARPT_SQL_FUNC_UTIL.get_reference.LINE_NUMBER,DESCRIPTION,LINE_AMOUNT— line-level detail.RULE_NAME— revenue recognition rule applied.SALESREP_NAME— primary salesrep.MANUAL_ADJUSTMENT_DATE— last update date on the deferred line.UNEARNED_REVENUE,REVENUE,CREDIT_MEMOS— aggregated accounting amounts.
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.
-
VIEW: APPS.AR_LINE_EXCEPTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_LINE_EXCEPTIONS_V, object_name:AR_LINE_EXCEPTIONS_V, status:VALID,
-
VIEW: APPS.AR_LINE_CONTINGENCIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_LINE_CONTINGENCIES_V, object_name:AR_LINE_CONTINGENCIES_V, status:VALID,
-
View: AR_LINE_CONTINGENCIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_LINE_CONTINGENCIES_V, object_name:AR_LINE_CONTINGENCIES_V, status:VALID, product: AR - Receivables , description: Holds contingency information for a deferred billing line. , implementation_dba_data: APPS.AR_LINE_CONTINGENCIES_V ,
-
VIEW: APPS.AR_LINE_EXCEPTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_LINE_EXCEPTIONS_V, object_name:AR_LINE_EXCEPTIONS_V, status:VALID,
-
VIEW: APPS.AR_LINE_CONTINGENCIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_LINE_CONTINGENCIES_V, object_name:AR_LINE_CONTINGENCIES_V, status:VALID,
-
View: AR_LINE_EXCEPTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_LINE_EXCEPTIONS_V, object_name:AR_LINE_EXCEPTIONS_V, status:VALID, product: AR - Receivables , description: Holds contingency information for a deferred billing line whose revenue has been adjusted. , implementation_dba_data: APPS.AR_LINE_EXCEPTIONS_V ,
-
VIEW: APPS.AR_LINE_REVENUE_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_LINE_REVENUE_DETAILS_V, object_name:AR_LINE_REVENUE_DETAILS_V, status:VALID,
-
View: AR_LINE_EXCEPTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_LINE_EXCEPTIONS_V, object_name:AR_LINE_EXCEPTIONS_V, status:VALID, product: AR - Receivables , description: Holds contingency information for a deferred billing line whose revenue has been adjusted. , implementation_dba_data: APPS.AR_LINE_EXCEPTIONS_V ,
-
View: AR_LINE_CONTINGENCIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_LINE_CONTINGENCIES_V, object_name:AR_LINE_CONTINGENCIES_V, status:VALID, product: AR - Receivables , description: Holds contingency information for a deferred billing line. , implementation_dba_data: APPS.AR_LINE_CONTINGENCIES_V ,
-
VIEW: APPS.AR_LINE_EXCEPTIONS_V
12.1.1
-
View: AR_LINE_REVENUE_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_LINE_REVENUE_DETAILS_V, object_name:AR_LINE_REVENUE_DETAILS_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_LINE_REVENUE_DETAILS_V ,
-
VIEW: APPS.AR_LINE_REVENUE_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_LINE_REVENUE_DETAILS_V, object_name:AR_LINE_REVENUE_DETAILS_V, status:VALID,
-
Lookup Type: ARI_CUSTOMER_SEARCH_TYPE
12.1.1
product: AR - Receivables , meaning: ARI Customer Search Type ,
-
Lookup Type: ARI_CUSTOMER_SEARCH_TYPE
12.2.2
product: AR - Receivables , meaning: ARI Customer Search Type ,
-
Lookup Type: ARI_REG_CUST_SEARCH_TYPE
12.2.2
product: AR - Receivables , meaning: iReceivables Registration Customer Search , description: Customer Search Types for Access Request page ,
-
Lookup Type: ARI_ACCOUNT_DETAILS_TYPE
12.2.2
product: AR - Receivables , meaning: ARI Account Details Type ,
-
Lookup Type: ARI_REG_CUST_SEARCH_TYPE
12.1.1
product: AR - Receivables , meaning: iReceivables Registration Customer Search , description: Customer Search Types for Access Request page ,
-
VIEW: APPS.AR_LINE_EXCEPTIONS_V
12.2.2
-
Lookup Type: ARI_ACCOUNT_DETAILS_TYPE
12.1.1
product: AR - Receivables , meaning: ARI Account Details Type ,
-
VIEW: APPS.AR_LINE_CONTINGENCIES_V
12.1.1
-
VIEW: APPS.AR_LINE_CONTINGENCIES_V
12.2.2
-
View: AR_LINE_REVENUE_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_LINE_REVENUE_DETAILS_V, object_name:AR_LINE_REVENUE_DETAILS_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_LINE_REVENUE_DETAILS_V ,
-
VIEW: APPS.AR_LINE_REVENUE_DETAILS_V
12.2.2
-
VIEW: APPS.AR_LINE_REVENUE_DETAILS_V
12.1.1
-
APPS.ARI_SELF_REG_CONFIG SQL Statements
12.2.2
-
APPS.ARI_SELF_REG_CONFIG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.ARI_SELF_REG_CONFIG
12.2.2
-
PACKAGE BODY: APPS.ARI_SELF_REG_CONFIG
12.1.1
-
APPS.ARI_SELF_REG_CONFIG dependencies on AR_PAYMENT_SCHEDULES
12.2.2
-
APPS.ARI_SELF_REG_CONFIG dependencies on AR_PAYMENT_SCHEDULES
12.1.1
-
APPS.PSA_BC_XML_REPORT_PUB SQL Statements
12.2.2
-
APPS.PSA_BC_XML_REPORT_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PSA_BC_XML_REPORT_PUB
12.1.1
-
PACKAGE BODY: APPS.PSA_BC_XML_REPORT_PUB
12.2.2
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,