Search Results creation_method_dsp
Overview
AR_OEX_RECEIPTS_VIEW is a valid Oracle E-Business Suite view owned by the APPS schema in the Receivables (AR) product. It is designed to support the Oracle Exchange Bill Presentment Payments page, presenting cash receipt information in a denormalized, display-ready format for exchange billing scenarios. The view consolidates data from receipt headers, receipt history, receipt methods, receipt classes, customer accounts, and party records so that a single query returns both technical identifiers and descriptive lookup values required by the Exchange-presented payments interface. Because it joins current and original receipt history rows, it exposes both the original and the functional (accounted) receipt amounts, statuses, and attributes.
Underlying Base Objects
The view is defined over a documented set of synonyms and views in the APPS schema, including AR_CASH_RECEIPTS_ALL, AR_CASH_RECEIPT_HISTORY_ALL, AR_BATCHES_ALL, AR_RECEIPT_CLASSES, AR_RECEIPT_METHODS, AR_PAYMENT_SCHEDULES_ALL, AR_RECEIVABLES_TRX_ALL, AR_LOOKUPS, HZ_CUST_ACCOUNTS, HZ_PARTIES, AP_BANK_ACCOUNTS_ALL, and AP_BANK_BRANCHES. It also references the FND_PROFILE package to retrieve the AR_MASK_BANK_ACCOUNT_NUMBERS profile option, which controls masking of customer bank account numbers. The primary join is between AR_CASH_RECEIPTS_ALL (CR) and AR_CASH_RECEIPT_HISTORY_ALL (CRH_CURRENT), with the customer bank account and branch information resolved through AP_BANK_ACCOUNTS_ALL and AP_BANK_BRANCHES, and customer identity resolved through HZ_CUST_ACCOUNTS and HZ_PARTIES.
Key Columns
- CASH_RECEIPT_ID / CASH_RECEIPT_HISTORY_ID — Primary keys linking the view to the receipt and its current history record.
- AMOUNT / FUNCTIONAL_AMOUNT / NET_AMOUNT — The entered receipt amount, the accounted (functional currency) amount, and the net amount from the current history row.
- RECEIPT_NUMBER, RECEIPT_DATE, RECEIPT_STATUS, RECEIPT_STATUS_DSP — The receipt identifier, date, and status code with its decoded meaning from AR_LOOKUPS.
- TYPE, CREATION_METHOD_CODE, CREATION_METHOD_DSP — The receipt type and the creation method from AR_RECEIPT_CLASSES, decoded via lookup meaning.
- PAYMENT_METHOD_DSP, RECEIPT_CLASS_DSP — Descriptive names from AR_RECEIPT_METHODS and AR_RECEIPT_CLASSES.
- CUSTOMER_ID, CUSTOMER_NAME, CUSTOMER_NUMBER, TAXPAYER_ID — Customer identity from HZ_PARTIES and HZ_CUST_ACCOUNTS.
- CUSTOMER_BANK_ACCOUNT, CUSTOMER_BANK_NAME, CUSTOMER_BANK_BRANCH — Bank details, masked according to the AR_MASK_BANK_ACCOUNT_NUMBERS profile option via FND_PROFILE.VALUE.
- BATCH_ID, BATCH_NAME — The receipt batch associated with the first posted history record.
Common Use Cases and Queries
Although the view is purpose-built for the Exchange Bill Presentment Payments page, it is frequently queried for receipt reporting where decoded statuses and masked bank details are required. A typical query might select receipt number, receipt date, amount, status description, and creation method for a given operation unit:
SELECT receipt_number, receipt_date, amount, receipt_status_dsp, creation_method_dsp
FROM apps.ar_oex_receipts_view
WHERE org_id = :org_id
AND receipt_date BETWEEN :from_date AND :to_date;
Another common scenario filters on receipt status to isolate unreconciled or reversed receipts, joining back to AR_CASH_RECEIPTS_ALL or AR_RECEIVABLES_TRX_ALL to reconcile history and transaction references. Because the view exposes CUSTOMER_RECEIPT_REFERENCE and CUSTOMER_BANK_ACCOUNT, it is also useful for customer-facing summaries and for auditing the receipt reversal reason captured in the associated receivable transaction records.
-
View: AR_OEX_RECEIPTS_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_OEX_RECEIPTS_VIEW, object_name:AR_OEX_RECEIPTS_VIEW, status:VALID, product: AR - Receivables , description: This is the view for the Oracle Exchange Bill Presentment Payments page. , implementation_dba_data: APPS.AR_OEX_RECEIPTS_VIEW ,
-
View: AR_OEX_RECEIPTS_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_OEX_RECEIPTS_VIEW, object_name:AR_OEX_RECEIPTS_VIEW, status:VALID, product: AR - Receivables , description: This is the view for the Oracle Exchange Bill Presentment Payments page. , implementation_dba_data: APPS.AR_OEX_RECEIPTS_VIEW ,
-
View: AR_CASH_RECEIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CASH_RECEIPTS_V, object_name:AR_CASH_RECEIPTS_V, status:VALID, product: AR - Receivables , description: This is the base table view for the Receipts window. , implementation_dba_data: APPS.AR_CASH_RECEIPTS_V ,
-
View: AR_CASH_RECEIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CASH_RECEIPTS_V, object_name:AR_CASH_RECEIPTS_V, status:VALID, product: AR - Receivables , description: This is the base table view for the Receipts window. , implementation_dba_data: APPS.AR_CASH_RECEIPTS_V ,