Search Results creation_method_code
Overview
JL_BR_AR_RCT_MTHD_2_V is a read-only database view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the JL – Latin America Localizations product family. Within Release 12.1.1 and 12.2.2, the view persists as a VALID database object and is documented in ETRM as "Retrofitted," indicating it originated in an earlier release and was carried forward into the R12 architecture with minimal functional change.
The view presents a joined, de-normalized projection of Oracle Receivables receipt method configuration, combining the receipt method name, its internal identifier, and the associated creation method code derived from the receipt class. Its principal reporting purpose is to expose the pairing of a receipt method with the creation_method_code value that governs how receipts are created — for example, whether they are entered manually, generated automatically, or remitted. This makes the view a convenient lookup surface for localization logic, concurrent program validation, and custom reporting that must determine the creation mechanics of a given receipt method without navigating the full Receivables table structure.
Underlying Base Objects
The view is defined over five base objects, all accessed through APPS synonyms:
- AR_RECEIPT_METHODS (aliased E) — the primary Receivables receipt method definition, supplying NAME and RECEIPT_METHOD_ID.
- AR_RECEIPT_CLASSES (aliased D) — the receipt class definition, supplying CREATION_METHOD_CODE.
- RA_CUST_RECEIPT_METHODS (aliased A) — customer receipt method assignments, joined on RECEIPT_METHOD_ID.
- AR_RECEIPT_METHOD_ACCOUNTS (aliased B) — the remittance bank account mappings for receipt methods, joined on RECEIPT_METHOD_ID.
- CE_BANK_ACCT_USES_ALL (aliased ACCUSE) — the Cash Management bank account use definitions, joined via REMIT_BANK_ACCT_USE_ID to BANK_ACCT_USE_ID.
The join path links the receipt method to its receipt class, then to its customer assignments, its receipt method accounts, and finally to the bank account use records. Because the view uses SELECT DISTINCT, duplicate rows arising from multiple account uses or customer assignments are collapsed. All five base objects are referenced as synonyms rather than as fully qualified table names, which is standard for APPS-owned views and ensures the view resolves against the same schema regardless of the session's default schema.
Key Columns
- NAME — the receipt method name from AR_RECEIPT_METHODS, the user-facing identifier displayed in Receivables setup and transaction entry.
- RECEIPT_METHOD_ID — the unique primary key identifier of the receipt method, used as the foreign key throughout Receivables, Cash Management, and related localization tables.
- CREATION_METHOD_CODE — sourced from AR_RECEIPT_CLASSES, this code indicates the creation method associated with the receipt class. It is the column most frequently referenced by localization programs and by the search term "creation_method_code."
The projection is intentionally narrow, exposing only the three columns required for lookup and filtering while abstracting the complex multi-table join behind a single selectable view.
Common Use Cases and Queries
The view is typically used to resolve receipt method names to their creation method codes within Brazilian and Latin American localization flows, such as receivables reporting, bank remittance processing, and data validation scripts.
A representative query retrieves the creation method for all receipt methods:
- SELECT name, receipt_method_id, creation_method_code FROM apps.jl_br_ar_rct_mthd_2_v ORDER BY name;
A targeted lookup resolves a specific receipt method by identifier:
- SELECT name, creation_method_code FROM apps.jl_br_ar_rct_mthd_2_v WHERE receipt_method_id = :p_receipt_method_id;
A filter by creation method code supports validation or reporting of receipt methods sharing common creation behavior:
- SELECT receipt_method_id, name FROM apps.jl_br_ar_rct_mthd_2_v WHERE creation_method_code = :p_creation_method_code;
Because the view returns distinct rows, it is safe to use in reporting joins without introducing artificial duplication, though consumers should account for the fact that creation method codes come from the receipt class and therefore apply uniformly to all receipt methods sharing that class.
-
View: JL_BR_AR_RCT_MTHD_2_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AR_RCT_MTHD_2_V, object_name:JL_BR_AR_RCT_MTHD_2_V, status:VALID, product: JL - Latin America Localizations , description: - Retrofitted , implementation_dba_data: APPS.JL_BR_AR_RCT_MTHD_2_V ,
-
VIEW: AR.AR_RECEIPT_CLASSES#
12.2.2
-
VIEW: APPS.JL_BR_AR_RCT_MTHD_2_V
12.2.2
-
View: JL_BR_AR_RCT_MTHD_2_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AR_RCT_MTHD_2_V, object_name:JL_BR_AR_RCT_MTHD_2_V, status:VALID, product: JL - Latin America Localizations , description: - Retrofitted , implementation_dba_data: APPS.JL_BR_AR_RCT_MTHD_2_V ,
-
VIEW: APPS.JL_BR_AR_RCT_MTHD_2_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AR_RCT_MTHD_2_V, object_name:JL_BR_AR_RCT_MTHD_2_V, status:VALID,
-
View: JL_BR_AR_RCT_MTHD_1_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AR_RCT_MTHD_1_V, object_name:JL_BR_AR_RCT_MTHD_1_V, status:VALID, product: JL - Latin America Localizations , description: - Retrofitted , implementation_dba_data: APPS.JL_BR_AR_RCT_MTHD_1_V ,
-
VIEW: APPS.JL_BR_AR_RCT_MTHD_2_V
12.1.1
-
VIEW: APPS.JL_BR_AR_RCT_MTHD_2_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AR_RCT_MTHD_2_V, object_name:JL_BR_AR_RCT_MTHD_2_V, status:VALID,
-
VIEW: APPS.JL_BR_AR_RCT_MTHD_1_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AR_RCT_MTHD_1_V, object_name:JL_BR_AR_RCT_MTHD_1_V, status:VALID,
-
View: JL_BR_AR_RCT_MTHD_1_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AR_RCT_MTHD_1_V, object_name:JL_BR_AR_RCT_MTHD_1_V, status:VALID, product: JL - Latin America Localizations , description: - Retrofitted , implementation_dba_data: APPS.JL_BR_AR_RCT_MTHD_1_V ,
-
VIEW: APPS.JL_BR_AR_RCT_MTHD_1_V
12.2.2
-
VIEW: APPS.AR_RCT_METHOD_S_V
12.1.1
-
VIEW: APPS.JL_BR_AR_RCT_MTHD_1_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AR_RCT_MTHD_1_V, object_name:JL_BR_AR_RCT_MTHD_1_V, status:VALID,
-
VIEW: APPS.JL_BR_AR_RCT_MTHD_1_V
12.1.1
-
VIEW: APPS.AR_RCT_METHOD_H_V
12.2.2
-
VIEW: APPS.AR_RCT_METHOD_H_V
12.1.1
-
VIEW: APPS.AR_RCT_METHOD_S_V
12.2.2
-
VIEW: AR.AR_RECEIPT_CLASSES#
12.2.2
owner:AR, object_type:VIEW, object_name:AR_RECEIPT_CLASSES#, status:VALID,
-
View: AR_RCT_METHOD_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_RCT_METHOD_H_V, object_name:AR_RCT_METHOD_H_V, status:VALID, product: AR - Receivables , description: AR XLA Extract , implementation_dba_data: APPS.AR_RCT_METHOD_H_V ,
-
View: AR_RCT_METHOD_S_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_RCT_METHOD_S_V, object_name:AR_RCT_METHOD_S_V, status:VALID, product: AR - Receivables , description: cash receipt receipt method shared extract , implementation_dba_data: APPS.AR_RCT_METHOD_S_V ,
-
View: AR_RCT_METHOD_S_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_RCT_METHOD_S_V, object_name:AR_RCT_METHOD_S_V, status:VALID, product: AR - Receivables , description: cash receipt receipt method shared extract , implementation_dba_data: APPS.AR_RCT_METHOD_S_V ,
-
View: AR_RCT_METHOD_H_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_RCT_METHOD_H_V, object_name:AR_RCT_METHOD_H_V, status:VALID, product: AR - Receivables , description: AR XLA Extract , implementation_dba_data: APPS.AR_RCT_METHOD_H_V ,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
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 ,
-
TABLE: AR.AR_RECEIPT_CLASSES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_RECEIPT_CLASSES, object_name:AR_RECEIPT_CLASSES, status:VALID,
-
TABLE: AR.AR_RECEIPT_CLASSES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.AR_RECEIPT_CLASSES, object_name:AR_RECEIPT_CLASSES, status:VALID,
-
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: APPS.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,
-
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 ,
-
VIEW: APPS.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,
-
VIEW: APPS.AR_OEX_RECEIPTS_VIEW
12.1.1
-
VIEW: APPS.AR_OEX_RECEIPTS_VIEW
12.2.2
-
VIEW: APPS.AR_CASH_RECEIPTS_V
12.1.1
-
VIEW: APPS.AR_CASH_RECEIPTS_V
12.2.2
-
APPS.AR_RECEIPT_LIB_PVT dependencies on AR_RECEIPT_CLASSES
12.1.1
-
APPS.AR_RECEIPT_LIB_PVT dependencies on AR_RECEIPT_CLASSES
12.2.2
-
APPS.AR_RECEIPT_LIB_PVT dependencies on AR_RECEIPT_METHODS
12.1.1
-
APPS.AR_RECEIPT_LIB_PVT dependencies on AR_RECEIPT_METHODS
12.2.2
-
APPS.AR_RECEIPT_LIB_PVT dependencies on CE_BANK_ACCT_USES
12.1.1
-
APPS.AR_RECEIPT_LIB_PVT dependencies on AR_RECEIPT_METHOD_ACCOUNTS
12.1.1
-
APPS.AR_RECEIPT_LIB_PVT dependencies on AR_RECEIPT_METHOD_ACCOUNTS
12.2.2
-
APPS.AR_RECEIPT_LIB_PVT dependencies on CE_BANK_ACCT_USES
12.2.2
-
APPS.AR_RECEIPT_LIB_PVT dependencies on AR_CASH_RECEIPTS
12.2.2
-
APPS.AR_RECEIPT_LIB_PVT dependencies on AR_CASH_RECEIPTS
12.1.1
-
eTRM - JL Tables and Views
12.1.1
description: Temporary Table For Inflation Adjustment Report ,
-
eTRM - JL Tables and Views
12.2.2
description: JL_ZZ_INFO_T is temporary table ,
-
PACKAGE BODY: APPS.AR_RECEIPT_LIB_PVT
12.1.1
-
PACKAGE BODY: APPS.AR_RECEIPT_LIB_PVT
12.2.2