Search Results balance_due_functional
Overview
APPS.AR_OPEN_TRX_V is a supplementary Oracle E-Business Suite view owned by the APPS schema and registered under FND Design Data as AR.AR_OPEN_TRX_V. Its documented status is VALID. As a supplementary view, it exists primarily to simplify Forms coding within the Receivables module rather than to serve as a supported public interface. Oracle's own documentation carries an explicit caution that querying or altering data through this view is not recommended, because its definition may change dramatically between minor or major releases. In practice, however, the view is widely referenced by technical consultants, report developers, and integration specialists who need a denormalized, presentation-ready projection of open (unpaid or partially paid) Receivables transactions without writing the full join logic against RA_CUSTOMER_TRX and AR_PAYMENT_SCHEDULES themselves.
The view resolves customer, site, transaction type, currency, and payment schedule information into a single flat row per transaction installment, exposing both formatted and unformatted balance amounts. This makes it a convenient source for dashboards, aging extracts, collection workbooks, and ad hoc reconciliation queries, provided the consumer accepts the caveat that it is not a certified integration object.
Underlying Base Objects
The documented dependency list for this view includes both synonyms to core Receivables tables and supporting PL/SQL packages. The synonyms resolve to the following base objects:
RA_CUSTOMER_TRX— the transaction header, supplying transaction number, type, dates, currency, and purchase order.AR_PAYMENT_SCHEDULES— the installment-level record that carries balance due, original amount, discount amounts, and status.RA_CUST_TRX_TYPES— transaction type definition and its class.HZ_CUST_ACCOUNTS,HZ_CUST_SITE_USES, andHZ_PARTIES— the Trading Community Architecture tables that supply customer number, customer name, and location.RA_TERMS— payment terms and their sequence.RA_BATCH_SOURCES— the batch source used at transaction creation.AR_CONS_INV— the consolidated invoice synonym used in the underlying query logic.
Programmatic behavior is provided by the packages ARPT_SQL_FUNC_UTIL, ARP_VIEW_CONSTANTS, FND_CURRENCY, and FND_DATE. These packages supply currency formatting and date handling, which is why the view can return a display-ready value in BALANCE_DUE_CURR alongside the raw numeric value in BALANCE_DUE_CURR_UNFORMATTED.
Key Columns
CUSTOMER_TRX_ID,PAYMENT_SCHEDULE_ID, andTERMS_SEQUENCE_NUMBER— the primary join keys back to the base tables.TRX_NUMBER,TRX_TYPE,CUST_TRX_TYPE_ID,CLASS, andCLASS_MEANING— transaction identity and classification.CUSTOMER_ID,CUSTOMER_NUMBER,CUSTOMER_NAME, andLOCATION— the TCA-derived customer and site context.INVOICE_CURRENCY_CODE— the transaction currency.BALANCE_DUE_CURR— the currency-formatted balance due, returned as VARCHAR2.BALANCE_DUE_CURR_UNFORMATTED— the numeric balance due in transaction currency, the column most commonly used for arithmetic, aging, and threshold comparisons.BALANCE_DUE_FUNCTIONAL— the same balance converted to the ledger's functional currency.AMOUNT_DUE_ORIGINAL,AMOUNT_LINE_ITEMS_ORIGINAL,DISCOUNT_TAKEN_EARNED, andDISCOUNT_TAKEN_UNEARNED— original and discount amount components.TRX_DATE,TRX_GL_DATE, andTRX_DUE_DATE— transaction, accounting, and due dates.STATUS,CREATION_SIGN, andTRX_EXCHANGE_RATE— lifecycle and conversion attributes.
Common Use Cases and Queries
The most frequent requirement is a list of open transactions with their raw numeric balance, since the formatted column is unsuitable for aggregation. A typical query is:
SELECT trx_number, customer_number, customer_name,
trx_due_date, invoice_currency_code,
balance_due_curr_unformatted
FROM apps.ar_open_trx_v
WHERE balance_due_curr_unformatted > 0
AND trx_due_date < SYSDATE
ORDER BY trx_due_date;
Because BALANCE_DUE_CURR_UNFORMATTED is a NUMBER, it supports SUM, AVG, and CASE logic directly, enabling aging buckets or customer-level exposure summaries. Analysts building collection or credit-limit reports typically group by CUSTOMER_ID and sum this column, while drilldown reports correlate PAYMENT_SCHEDULE_ID back to AR_PAYMENT_SCHEDULES. Integration developers sometimes use the view to stage open-transaction data into external systems, although for production integrations the documented base tables remain the recommended source given the view's non-certified status.
-
VIEW: APPS.AR_OPEN_TRX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_OPEN_TRX_V, object_name:AR_OPEN_TRX_V, status:VALID,
-
VIEW: APPS.AR_OPEN_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_OPEN_ITEMS_V, object_name:AR_OPEN_ITEMS_V, status:VALID,
-
VIEW: APPS.AR_OPEN_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_OPEN_ITEMS_V, object_name:AR_OPEN_ITEMS_V, status:VALID,
-
View: AR_OPEN_TRX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_OPEN_TRX_V, object_name:AR_OPEN_TRX_V, status:VALID, product: AR - Receivables , description: (Release 115 Only) , implementation_dba_data: APPS.AR_OPEN_TRX_V ,
-
VIEW: APPS.AR_OPEN_TRX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_OPEN_TRX_V, object_name:AR_OPEN_TRX_V, status:VALID,
-
View: AR_OPEN_TRX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_OPEN_TRX_V, object_name:AR_OPEN_TRX_V, status:VALID, product: AR - Receivables , description: (Release 115 Only) , implementation_dba_data: APPS.AR_OPEN_TRX_V ,
-
VIEW: APPS.AR_OPEN_TRX_V
12.2.2
-
View: AR_OPEN_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_OPEN_ITEMS_V, object_name:AR_OPEN_ITEMS_V, status:VALID, product: AR - Receivables , description: (Release 115 Only) , implementation_dba_data: APPS.AR_OPEN_ITEMS_V ,
-
View: AR_OPEN_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_OPEN_ITEMS_V, object_name:AR_OPEN_ITEMS_V, status:VALID, product: AR - Receivables , description: (Release 115 Only) , implementation_dba_data: APPS.AR_OPEN_ITEMS_V ,
-
VIEW: APPS.AR_OPEN_ITEMS_V
12.2.2
-
VIEW: APPS.AR_OPEN_TRX_V
12.1.1
-
VIEW: APPS.AR_OPEN_ITEMS_V
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 ,