Search Results discount_original
Overview
AR_PAYMENT_SCHEDULES_ALL_MRC_V is a multi-reporting-currency (MRC) view owned by the APPS schema in Oracle E-Business Suite Release 12.1.1 and 12.2.2. It exposes payment schedule information for Oracle Receivables transactions, combining the transactional (primary) currency columns of the base payment schedule with the reporting-currency equivalents maintained by the Multiple Reporting Currencies architecture. The "MRC" designation indicates that monetary amounts such as ACCTD_AMOUNT_DUE_REMAINING are drawn from the reporting-currency schedule, while operational and descriptive attributes originate from the primary schedule. The view supports the standard MRC practice of recording and reporting accounting entries in one or more reporting currencies in addition to the functional currency. As a reporting and integration object, it allows queries and downstream processes to retrieve payment schedule balances in a selected reporting currency without directly joining the underlying MRC table. The user search term "adjustment_id_last" maps to the ADJUSTMENT_ID_LAST column, which the view exposes for the most recent adjustment applied to a schedule line.
Underlying Base Objects
The documented view metadata identifies two referenced base objects, both accessed through synonyms:
- AR_PAYMENT_SCHEDULES_ALL — the primary (functional or transaction currency) payment schedule table, aliased as PRIMARY in the view text. It supplies operational columns and the monetary amounts that are not reporting-currency specific.
- AR_MC_PAYMENT_SCHEDULES — the multiple reporting currency payment schedule table, aliased as MC. It supplies the reporting-currency columns: EXCHANGE_RATE_TYPE, EXCHANGE_DATE, EXCHANGE_RATE, and ACCTD_AMOUNT_DUE_REMAINING, among others.
The view joins these objects on the shared payment schedule identity and transaction keys, presenting a single, denormalized row per schedule line for reporting-currency consumption. Because AR_MC_PAYMENT_SCHEDULES stores one row per reporting currency, the view is typically filtered by reporting currency context implied by the MRC setup.
Key Columns
- PAYMENT_SCHEDULE_ID / CUSTOMER_TRX_ID — primary keys identifying the schedule line and its parent transaction.
- EXCHANGE_RATE_TYPE, EXCHANGE_DATE, EXCHANGE_RATE — currency conversion attributes from the MRC table.
- ACCTD_AMOUNT_DUE_REMAINING — the remaining amount due, expressed in the accounting (reporting) currency.
- AMOUNT_DUE_ORIGINAL / AMOUNT_DUE_REMAINING — original and remaining amounts in the primary currency.
- AMOUNT_APPLIED, AMOUNT_ADJUSTED, AMOUNT_IN_DISPUTE, AMOUNT_CREDITED — activity buckets summarizing cash application, adjustments, disputes, and credits.
- TAX_ORIGINAL, TAX_REMAINING, FREIGHT_ORIGINAL, FREIGHT_REMAINING, DISCOUNT_ORIGINAL, DISCOUNT_REMAINING — component breakdowns of the schedule.
- ADJUSTMENT_ID_LAST, ADJUSTMENT_DATE_LAST, ADJUSTMENT_GL_DATE_LAST, ADJUSTMENT_AMOUNT_LAST — audit trail of the most recent adjustment, including its identifier, dates, and amount.
- CASH_APPLIED_ID_LAST, CASH_APPLIED_DATE_LAST, CASH_APPLIED_AMOUNT_LAST, CASH_RECEIPT_ID_LAST and related columns — trail of the most recent cash application and receipt.
- STATUS, CLASS, DUE_DATE, GL_DATE_CLOSED, ACTUAL_DATE_CLOSED — lifecycle and aging attributes.
- TRX_NUMBER, TRX_DATE, CUSTOMER_ID, ORG_ID — transaction and organizational context.
- ATTRIBUTE_CATEGORY, ATTRIBUTE1–15, GLOBAL_ATTRIBUTE1 — descriptive flexfield and global attribute storage.
Common Use Cases and Queries
This view is used in receivables reporting where reporting-currency balances are required, such as MRC-aware aging reports, reconciliation of accounting-currency receivables, and integration extracts that populate data warehouses or downstream subledgers.
- Retrieving reporting-currency outstanding balances for a transaction.
- Auditing the most recent adjustment applied to a schedule line via ADJUSTMENT_ID_LAST.
- Reconciling primary versus accounting-currency amounts using the exchange rate columns.
A representative query follows:
SELECT payment_schedule_id,
customer_trx_id,
trx_number,
acctd_amount_due_remaining,
exchange_rate,
adjustment_id_last,
adjustment_amount_last,
status
FROM apps.ar_payment_schedules_all_mrc_v
WHERE customer_trx_id = :p_customer_trx_id
AND org_id = :p_org_id;
Because the view depends on MRC configuration, the reporting-currency row returned is determined by the active MRC setup, and results should be validated against the enabled reporting currencies in the instance.
-
View: AR_PAYMENT_SCHEDULES_ALL_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_ALL_MRC_V, object_name:AR_PAYMENT_SCHEDULES_ALL_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_PAYMENT_SCHEDULES_ALL_MRC_V ,
-
VIEW: AR.AR_PAYMENT_SCHEDULES_ALL#
12.2.2
-
VIEW: APPS.AR_PAYMENT_SCHEDULES_ALL_MRC_V
12.1.1
-
View: AR_PAYMENT_SCHEDULES_ALL_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_ALL_MRC_V, object_name:AR_PAYMENT_SCHEDULES_ALL_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_PAYMENT_SCHEDULES_ALL_MRC_V ,
-
VIEW: APPS.AR_PAYMENT_SCHEDULES_ALL_MRC_V
12.2.2
-
VIEW: AR.AR_PAYMENT_SCHEDULES_ALL#
12.2.2
owner:AR, object_type:VIEW, object_name:AR_PAYMENT_SCHEDULES_ALL#, status:VALID,
-
View: AMS_AR_TRANSACTION_V
12.2.2
product: AMS - Marketing , description: Receivables Transactions , implementation_dba_data: Not implemented in this database ,
-
View: AMS_AR_TRANSACTION_V
12.1.1
product: AMS - Marketing , description: Receivables Transactions , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AR_PAYMENT_SCHEDULES_FLEX_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_FLEX_VIEW, object_name:AR_PAYMENT_SCHEDULES_FLEX_VIEW, status:VALID,
-
VIEW: APPS.AR_PAYMENT_SCHEDULES_FLEX_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_FLEX_VIEW, object_name:AR_PAYMENT_SCHEDULES_FLEX_VIEW, status:VALID,
-
View: AR_PAYMENT_SCHEDULES_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_MRC_V, object_name:AR_PAYMENT_SCHEDULES_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_PAYMENT_SCHEDULES_MRC_V ,
-
View: AR_PAYMENT_SCHEDULES_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_MRC_V, object_name:AR_PAYMENT_SCHEDULES_MRC_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_PAYMENT_SCHEDULES_MRC_V ,
-
View: AR_PAYMENT_SCHEDULES_FLEX_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_FLEX_VIEW, object_name:AR_PAYMENT_SCHEDULES_FLEX_VIEW, status:VALID, product: AR - Receivables , description: Descriptive Flexfields for payment schedules , implementation_dba_data: APPS.AR_PAYMENT_SCHEDULES_FLEX_VIEW ,
-
APPS.ARP_PS_PKG SQL Statements
12.1.1
-
View: AR_PAYMENT_SCHEDULES_FLEX_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_FLEX_VIEW, object_name:AR_PAYMENT_SCHEDULES_FLEX_VIEW, status:VALID, product: AR - Receivables , description: Descriptive Flexfields for payment schedules , implementation_dba_data: APPS.AR_PAYMENT_SCHEDULES_FLEX_VIEW ,
-
APPS.ARP_PS_PKG SQL Statements
12.2.2
-
VIEW: APPS.AR_PAYMENT_SCHEDULES_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_MRC_V, object_name:AR_PAYMENT_SCHEDULES_MRC_V, status:VALID,
-
VIEW: APPS.AR_PAYMENT_SCHEDULES_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_MRC_V, object_name:AR_PAYMENT_SCHEDULES_MRC_V, status:VALID,
-
VIEW: APPS.AR_PAYMENT_SCHEDULES_ALL_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_ALL_MRC_V, object_name:AR_PAYMENT_SCHEDULES_ALL_MRC_V, status:VALID,
-
VIEW: APPS.AR_PAYMENT_SCHEDULES_ALL_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_ALL_MRC_V, object_name:AR_PAYMENT_SCHEDULES_ALL_MRC_V, status:VALID,
-
TABLE: AR.AR_PAYMENT_SCHEDULES_ALL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_ALL, object_name:AR_PAYMENT_SCHEDULES_ALL, status:VALID,
-
TABLE: AR.AR_PAYMENT_SCHEDULES_ALL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_PAYMENT_SCHEDULES_ALL, object_name:AR_PAYMENT_SCHEDULES_ALL, status:VALID,
-
PACKAGE BODY: APPS.ARP_PS_PKG
12.2.2
-
PACKAGE BODY: APPS.ARP_PS_PKG
12.1.1
-
APPS.ARP_RECEIPTS_MAIN SQL Statements
12.1.1
-
PACKAGE BODY: APPS.ARP_RECEIPTS_MAIN
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 ,