Search Results original_line_amount
Overview
ARBV_AR_PAYMENT_SCHEDULES is a business view owned by the APPS schema in Oracle E-Business Suite Receivables. It exposes the payment schedule records that form the collection backbone of the AR subledger, one row per installment owed by a customer against a transaction. The view is registered as FND Design Data AR.ARBV_AR_PAYMENT_SCHEDULES and is flagged VALID in both 12.1.1 and 12.2.2. It carries the Oracle Internal Use Only restriction: Oracle Corporation does not support access to applications data through this object except from standard Oracle Applications programs. Consequently it should be treated as a read-only reporting and integration surface, not as a transactional interface. Its columns span due dates, original and remaining amounts, discounts, freight, tax, dispute and collection attributes, and the foreign keys that tie each schedule line back to the transaction, customer, site, and cash receipt. For the searched term original_line_amount, the view is the primary consolidated source, alongside remaining_line_amount, original_amount_due, and balance_due.
Underlying Base Objects
The documented dependency list identifies two referenced objects, both reached through synonyms: AR_PAYMENT_SCHEDULES (SYNONYM) and AR_CONS_INV (SYNONYM). AR_PAYMENT_SCHEDULES is the core AR table holding every payment schedule line, including installment sequencing, amounts, discounts, disputes, dunning, and collection state. AR_CONS_INV is the consolidated invoice object used for consolidated billing, which explains the inclusion of CONSOLIDATED_BILLING_NUMBER and the associated _LA: classification columns that derive display values for consolidated billing contexts. The view is therefore a thin, denormalized presentation layer over AR_PAYMENT_SCHEDULES, enriched where consolidated billing data applies. The _LA: prefixed columns (for example _LA:CLASS, _LA:ITEM_STATUS, _LA:IN_COLLECTION_FLAG) are lookup-derived attributes rather than stored base columns, reflecting the view's role in presenting code values in a report-friendly form.
Key Columns
- PAYMENT_SCHEDULE_ID — Primary identifier for the installment; the join key to AR_PAYMENT_SCHEDULES and to receipt application tables.
- ORIGINAL_LINE_AMOUNT / REMAINING_LINE_AMOUNT — The line-level amount originally scheduled and the amount still outstanding on that line, central to aging and open-item analysis.
- ORIGINAL_AMOUNT_DUE / BALANCE_DUE / BALANCE_DUE_IN_FUNCTIONAL_CURR — Total amount due at schedule creation and the current balance, including a functional-currency equivalent for reporting when the transaction currency differs.
- ORIGINAL_FREIGHT, ORIGINAL_TAX and their REMAINING_ counterparts — Component breakdown of charges and taxes still collectible.
- EARNED_DISCOUNT_TAKEN / UNEARNED_DISCOUNT_TAKEN — Discount position, supporting early-payment and settlement reporting.
- AMOUNT_CREDITED, RECEIVABLE_CHARGES_CHARGED, RECEIVABLE_CHARGES_REMAINING — Credit and charge activity applied against the schedule line.
- DUE_DATE, GENERAL_LEDGER_DATE, SCHEDULE_CLOSED_DATE, ACTUAL_DATE_CLOSED — Timing attributes governing aging, GL transfer, and closure.
- DISPUTE_AMOUNT, DISPUTE_DATE and the collection columns (LAST_CALL_DATE, LAST_FOLLOW_UP_DATE, LAST_PROMISE_DUE_DATE, LAST_PROMISE_AMOUNT, STAGED_DUNNING_LEVEL) — Collections and dispute management attributes.
- CUSTOMER_TRX_ID, CASH_RECEIPT_ID, CUSTOMER_ID, TERM_ID, ORG_ID, CUSTOMER_SITE_USE_ID — Foreign keys to the transaction, receipt, customer, payment term, operating unit, and site.
- INVOICE_CURRENCY_CODE, CURRENCY_EXCHANGE_RATE, CURRENCY_EXCHANGE_RATE_TYPE, CURRENCY_EXCHANGE_RATE_DATE — Currency and conversion context.
Common Use Cases and Queries
Typical use cases include open-receivables aging, installment-level collection reporting, dispute tracking, and reconciliation of receipt applications to scheduled installments. A representative query on the searched column is:
SELECT payment_schedule_id, customer_trx_id, due_date, original_line_amount, remaining_line_amount, balance_due, invoice_currency_code FROM apps.arbv_ar_payment_schedules WHERE org_id = :p_org_id AND remaining_line_amount > 0 ORDER BY due_date;SELECT customer_trx_id, SUM(original_line_amount) original_scheduled, SUM(remaining_line_amount) still_open FROM apps.arbv_ar_payment_schedules WHERE org_id = :p_org_id GROUP BY customer_trx_id;SELECT payment_schedule_id, dispute_amount, dispute_date FROM apps.arbv_ar_payment_schedules WHERE dispute_amount IS NOT NULL;
Because the view is documented as internal use only, production reporting should prefer supported public views where they exist, and any direct querying should be limited to read-only selection against the columns documented above.
-
VIEW: APPS.ARBV_AR_PAYMENT_SCHEDULES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARBV_AR_PAYMENT_SCHEDULES, object_name:ARBV_AR_PAYMENT_SCHEDULES, status:VALID,
-
VIEW: APPS.ARFV_AR_PAYMENT_SCHEDULES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_AR_PAYMENT_SCHEDULES, object_name:ARFV_AR_PAYMENT_SCHEDULES, status:VALID,
-
VIEW: APPS.ARBV_AR_PAYMENT_SCHEDULES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARBV_AR_PAYMENT_SCHEDULES, object_name:ARBV_AR_PAYMENT_SCHEDULES, status:VALID,
-
VIEW: APPS.ARFV_AR_PAYMENT_SCHEDULES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_AR_PAYMENT_SCHEDULES, object_name:ARFV_AR_PAYMENT_SCHEDULES, status:VALID,
-
View: ARBV_AR_PAYMENT_SCHEDULES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARBV_AR_PAYMENT_SCHEDULES, object_name:ARBV_AR_PAYMENT_SCHEDULES, status:VALID, product: AR - Receivables , description: -Retrofitted , implementation_dba_data: APPS.ARBV_AR_PAYMENT_SCHEDULES ,
-
View: ARBV_AR_PAYMENT_SCHEDULES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARBV_AR_PAYMENT_SCHEDULES, object_name:ARBV_AR_PAYMENT_SCHEDULES, status:VALID, product: AR - Receivables , description: -Retrofitted , implementation_dba_data: APPS.ARBV_AR_PAYMENT_SCHEDULES ,
-
View: ARFV_AR_PAYMENT_SCHEDULES_OLD1
12.2.2
product: AR - Receivables , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: ARFV_AR_PAYMENT_SCHEDULES_OLD1
12.1.1
product: AR - Receivables , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: ARFV_AR_PAYMENT_SCHEDULES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_AR_PAYMENT_SCHEDULES, object_name:ARFV_AR_PAYMENT_SCHEDULES, status:VALID, product: AR - Receivables , description: This shows information about entries against accounts receivable transactions ( both debits and credits ), except adjustments and miscellaneous cash. , implementation_dba_data: APPS.ARFV_AR_PAYMENT_SCHEDULES ,
-
View: ARFV_AR_PAYMENT_SCHEDULES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.ARFV_AR_PAYMENT_SCHEDULES, object_name:ARFV_AR_PAYMENT_SCHEDULES, status:VALID, product: AR - Receivables , description: This shows information about entries against accounts receivable transactions ( both debits and credits ), except adjustments and miscellaneous cash. , implementation_dba_data: APPS.ARFV_AR_PAYMENT_SCHEDULES ,
-
APPS.FV_APPLY_CASH_RECEIPT SQL Statements
12.2.2
-
APPS.FV_APPLY_CASH_RECEIPT SQL Statements
12.1.1
-
APPS.FV_APPLY_CASH_RECEIPT dependencies on RA_TERMS
12.2.2
-
APPS.FV_APPLY_CASH_RECEIPT dependencies on RA_TERMS
12.1.1
-
APPS.FV_APPLY_CASH_RECEIPT dependencies on RA_TERMS_LINES
12.1.1
-
APPS.FV_APPLY_CASH_RECEIPT dependencies on RA_TERMS_LINES
12.2.2
-
APPS.FV_APPLY_CASH_RECEIPT dependencies on RA_CUSTOMER_TRX_LINES
12.2.2
-
APPS.FV_APPLY_CASH_RECEIPT dependencies on RA_CUSTOMER_TRX_LINES
12.1.1
-
APPS.FV_APPLY_CASH_RECEIPT dependencies on RA_CUSTOMER_TRX
12.2.2
-
APPS.FV_APPLY_CASH_RECEIPT dependencies on RA_CUSTOMER_TRX
12.1.1
-
PACKAGE BODY: APPS.FV_APPLY_CASH_RECEIPT
12.1.1
-
PACKAGE BODY: APPS.FV_APPLY_CASH_RECEIPT
12.2.2
-
PACKAGE BODY: APPS.ARP_CMREQ_WF
12.1.1
-
PACKAGE BODY: APPS.ARP_CMREQ_WF
12.2.2
-
APPS.ARP_CMREQ_WF dependencies on WF_ENGINE
12.1.1
-
APPS.ARP_CMREQ_WF dependencies on WF_ENGINE
12.2.2
-
APPS.AR_AME_CMWF_API dependencies on WF_ENGINE
12.1.1
-
APPS.AR_AME_CMWF_API dependencies on WF_ENGINE
12.2.2
-
PACKAGE BODY: APPS.AR_AME_CMWF_API
12.2.2
-
PACKAGE BODY: APPS.AR_AME_CMWF_API
12.1.1
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,