Search Results merchant_id
Overview
APPS.ASO_I_RECEIPT_METHODS_V is an Oracle E-Business Suite view owned by the APPS schema that exposes receipt method reference data from the Oracle Receivables foundation layer to the Order Capture / iStore (ASO) application modules. In EBS 12.1.1 and 12.2.2 it functions as a thin, integration-oriented wrapper: rather than re-implementing receipt method logic, it presents a curated projection of AR_RECEIPT_METHODS so that order capture, order management, and self-service checkout pages can validate and display the payment instruments that a customer or operating unit is permitted to use.
The view is most commonly encountered during investigation of payment or remittance attributes carried into order capture flows. Searches for merchant_id frequently resolve to this object, because the view is one of the few ASO-layer entry points that surfaces the merchant identifier associated with a receipt method — the credential used when receipt methods are routed to a payment processor or bank gateway.
Underlying Base Objects
The documented view text is a single-table projection:
SELECT receipt_method_id, name, start_date, end_date, merchant_id FROM ar_receipt_methods- Referenced base object: AR_RECEIPT_METHODS (accessed via a synonym).
- Owner of the view: APPS, consistent with the shared APPS synonym layer used across EBS 12.1.1 and 12.2.2.
There are no joins, unions, or aggregations in the documented definition, so the view is logically equivalent to a column-restricted, filter-free query on AR_RECEIPT_METHODS. Row counts and effective-dating behaviour therefore mirror the underlying Receivables table exactly; any filtering by date or operating unit is the responsibility of the calling form, concurrent program, or custom report.
Key Columns
- RECEIPT_METHOD_ID — Primary key of the receipt method. This is the value stored on order, payment, and remittance records as the foreign key reference, and is the correct join key when linking this view back to transactional tables.
- NAME — User-facing receipt method name (for example, a credit card brand or a direct debit method). This is the value typically displayed in LOVs and order capture screens.
- START_DATE / END_DATE — Effective-dating bounds for the receipt method. The view does not apply a SYSDATE filter, so inactive or future-dated methods are returned and must be excluded by the consumer.
- MERCHANT_ID — Merchant identifier associated with the receipt method, used in payment processing and gateway configuration. Note that this is a column of AR_RECEIPT_METHODS; the view simply exposes it to the ASO layer. Where receipt methods are not processor-based, this value may be null.
Common Use Cases and Queries
The view is used for LOV population, data validation prior to order submission, and extract/reporting requirements in order capture and iStore. A typical lookup by identifier:
SELECT receipt_method_id, name, merchant_id FROM apps.aso_i_receipt_methods_v WHERE receipt_method_id = :p_receipt_method_id;
To restrict to currently effective methods, apply the date bounds explicitly — the view does not do so:
SELECT receipt_method_id, name, merchant_id
FROM apps.aso_i_receipt_methods_v
WHERE TRUNC(SYSDATE) BETWEEN NVL(start_date, TRUNC(SYSDATE))
AND NVL(end_date, TRUNC(SYSDATE));
Where payment routing depends on processor credentials, the merchant identifier is selected alongside the method name, and results are usually joined back to AR_RECEIPT_METHODS or the Receivables customer/remittance tables for the full processing context. Because the view exposes only four attribute columns, queries requiring additional receipt method attributes — such as remittance bank, printing options, or receipt class — must reference AR_RECEIPT_METHODS directly rather than this view.
-
APPS.IBY_QUERYSET_PKG SQL Statements
12.2.2
-
APPS.IBY_QUERYSET_PKG SQL Statements
12.1.1
-
VIEW: APPS.ASO_I_RECEIPT_METHODS_V
12.1.1
-
View: ASO_I_RECEIPT_METHODS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_RECEIPT_METHODS_V, object_name:ASO_I_RECEIPT_METHODS_V, status:VALID, product: ASO - Order Capture , description: gives information regarding receipt methods available in AR , implementation_dba_data: APPS.ASO_I_RECEIPT_METHODS_V ,
-
VIEW: APPS.ASO_I_RECEIPT_METHODS_V
12.2.2
-
View: ASO_I_RECEIPT_METHODS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_RECEIPT_METHODS_V, object_name:ASO_I_RECEIPT_METHODS_V, status:VALID, product: ASO - Order Capture , description: gives information regarding receipt methods available in AR , implementation_dba_data: APPS.ASO_I_RECEIPT_METHODS_V ,
-
VIEW: AR.AR_RECEIPT_METHODS#
12.2.2
-
View: IBY_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_TRANSACTIONS_V, object_name:IBY_TRANSACTIONS_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_TRANSACTIONS_V ,
-
View: IBY_TRANSACTIONS_SET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_TRANSACTIONS_SET_V, object_name:IBY_TRANSACTIONS_SET_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_TRANSACTIONS_SET_V ,
-
VIEW: APPS.IBY_TRANSACTIONS_V
12.1.1
-
VIEW: APPS.IBY_TRANSACTIONS_V
12.2.2
-
View: IBY_TRANSACTIONS_SET_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_TRANSACTIONS_SET_V, object_name:IBY_TRANSACTIONS_SET_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_TRANSACTIONS_SET_V ,
-
VIEW: APPS.IBY_TRANSACTIONS_SET_V
12.2.2
-
View: IBY_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_TRANSACTIONS_V, object_name:IBY_TRANSACTIONS_V, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_TRANSACTIONS_V ,
-
VIEW: APPS.AR_RECEIPT_METHOD_NAME_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_RECEIPT_METHOD_NAME_V, object_name:AR_RECEIPT_METHOD_NAME_V, status:VALID,
-
PACKAGE BODY: APPS.IBY_QUERYSET_PKG
12.2.2
-
VIEW: APPS.AR_RECEIPT_METHOD_NAME_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_RECEIPT_METHOD_NAME_V, object_name:AR_RECEIPT_METHOD_NAME_V, status:VALID,
-
VIEW: APPS.ASO_I_RECEIPT_METHODS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_RECEIPT_METHODS_V, object_name:ASO_I_RECEIPT_METHODS_V, status:VALID,
-
VIEW: APPS.ASO_I_RECEIPT_METHODS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_RECEIPT_METHODS_V, object_name:ASO_I_RECEIPT_METHODS_V, status:VALID,
-
VIEW: APPS.IBY_TRANSACTIONS_SET_V
12.1.1
-
PACKAGE BODY: APPS.IBY_QUERYSET_PKG
12.1.1
-
View: IGS_FI_CRD_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_CRD_INT, object_name:IGS_FI_CRD_INT, status:VALID, product: IGS - Student System , description: No longer used. , implementation_dba_data: APPS.IGS_FI_CRD_INT ,
-
VIEW: APPS.IBY_TRANSACTIONS_SET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_TRANSACTIONS_SET_V, object_name:IBY_TRANSACTIONS_SET_V, status:VALID,
-
VIEW: APPS.IGS_FI_CRD_INT
12.1.1
-
APPS.IBY_QUERYCC_PKG SQL Statements
12.2.2
-
VIEW: APPS.IBY_TRANSACTIONS_SET_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_TRANSACTIONS_SET_V, object_name:IBY_TRANSACTIONS_SET_V, status:VALID,
-
View: IGS_FI_CREDITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_CREDITS, object_name:IGS_FI_CREDITS, status:VALID, product: IGS - Student System , description: This view is a multi-org filter flat view based on table IGS_FI_CREDITS_ALL. , implementation_dba_data: APPS.IGS_FI_CREDITS ,
-
View: IGS_FI_CREDITS
12.2.2
product: IGS - Student System (Obsolete) , description: This view is a multi-org filter flat view based on table IGS_FI_CREDITS_ALL. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_CRD_INT
12.2.2
product: IGS - Student System (Obsolete) , description: No longer used. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_FI_CREDITS
12.1.1
-
View: IGS_FI_INV_INT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IBY_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_TRANSACTIONS_V, object_name:IBY_TRANSACTIONS_V, status:VALID,
-
VIEW: APPS.IBY_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_TRANSACTIONS_V, object_name:IBY_TRANSACTIONS_V, status:VALID,
-
APPS.IBY_QUERYCC_PKG SQL Statements
12.1.1
-
View: IGS_FI_INV_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_INV_INT, object_name:IGS_FI_INV_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_FI_INV_INT ,
-
View: AR_RECEIPT_METHOD_NAME_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_RECEIPT_METHOD_NAME_V, object_name:AR_RECEIPT_METHOD_NAME_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_RECEIPT_METHOD_NAME_V ,
-
View: AR_RECEIPT_METHOD_NAME_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_RECEIPT_METHOD_NAME_V, object_name:AR_RECEIPT_METHOD_NAME_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_RECEIPT_METHOD_NAME_V ,
-
VIEW: APPS.IGS_FI_INV_INT
12.1.1
-
VIEW: AR.AR_RECEIPT_METHODS#
12.2.2
owner:AR, object_type:VIEW, object_name:AR_RECEIPT_METHODS#, status:VALID,
-
VIEW: APPS.IGS_FI_CRD_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_CRD_INT, object_name:IGS_FI_CRD_INT, status:VALID,
-
VIEW: APPS.IGS_FI_INV_IGF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_INV_IGF_V, object_name:IGS_FI_INV_IGF_V, status:VALID,
-
TABLE: IGS.IGS_FI_CRD_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_CRD_INT_ALL, object_name:IGS_FI_CRD_INT_ALL, status:VALID,
-
View: IGS_FI_INV_INT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_INV_INT_V, object_name:IGS_FI_INV_INT_V, status:VALID, product: IGS - Student System , description: This view is created by joining view IGS_FI_INV_INT and IGS_LOOKUPS_VIEW to resolve meaning of lookup codes. , implementation_dba_data: APPS.IGS_FI_INV_INT_V ,
-
View: IGS_FI_INV_INT_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is created by joining view IGS_FI_INV_INT and IGS_LOOKUPS_VIEW to resolve meaning of lookup codes. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_FI_INV_INT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_INV_INT_V, object_name:IGS_FI_INV_INT_V, status:VALID,
-
View: IGS_FI_INV_IGF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_INV_IGF_V, object_name:IGS_FI_INV_IGF_V, status:VALID, product: IGS - Student System , description: This view is used to fetch all the charges from the view igs_fi_inv_int. A link with igs_fi_fee_type is also made to fetch the fee class defined for the fee type.This view has been primarily created for Financial Aid Disbursement to access , implementation_dba_data: APPS.IGS_FI_INV_IGF_V ,
-
View: IGS_FI_INV_IGF_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is used to fetch all the charges from the view igs_fi_inv_int. A link with igs_fi_fee_type is also made to fetch the fee class defined for the fee type.This view has been primarily created for Financial Aid Disbursement to access , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_OTC_CHARGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_OTC_CHARGES_V, object_name:IGS_FI_OTC_CHARGES_V, status:VALID, product: IGS - Student System , description: The view contains information on the charges(of type external) that are created at the time of receipt creation. , implementation_dba_data: APPS.IGS_FI_OTC_CHARGES_V ,
-
View: IGS_FI_OTC_CHARGES_V
12.2.2
product: IGS - Student System (Obsolete) , description: The view contains information on the charges(of type external) that are created at the time of receipt creation. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_FI_CREDITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_CREDITS, object_name:IGS_FI_CREDITS, status:VALID,