Search Results iby_payment_methods_tl
Overview
The IBY_PAYMENT_METHODS_TL table is a core translation table within the Oracle Payments (IBY) module of Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2. It stores the translated, user-facing names and descriptions for payment methods, enabling the application's multilingual capabilities. This table works in conjunction with its base table, IBY_PAYMENT_METHODS_B, which holds the seed data. A payment method is a critical payment attribute on a document payable that defines how a payer intends to make a payment, such as by check, wire transfer, or electronic funds transfer. The _TL (Translation) table ensures that these method names are displayed in the user's session language throughout the application interface.
Key Information Stored
The table's structure is designed to support multilingual data through a combination of a unique identifier and a language code. The primary key is a composite of PAYMENT_METHOD_CODE and LANGUAGE. The PAYMENT_METHOD_CODE column is a foreign key that links each translated row to its corresponding seed definition in the IBY_PAYMENT_METHODS_B table. The LANGUAGE column holds the standard Oracle language code (e.g., 'US' for American English). The most critical user-facing columns are PAYMENT_METHOD_NAME and DESCRIPTION, which contain the translated text for the payment method's display name and explanatory description, respectively. Additional standard columns like CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN track row history.
Common Use Cases and Queries
A primary use case is retrieving the payment method name in the current user's language for display in reports or application forms. Developers and functional consultants often query this table to verify or audit translated values for implementation support. A common SQL pattern joins the translation table with its base table to get a complete, language-specific view.
- Sample Query for Active Payment Methods in Session Language:
SELECT b.payment_method_code, tl.payment_method_name, tl.description
FROM iby_payment_methods_b b, iby_payment_methods_tl tl
WHERE b.payment_method_code = tl.payment_method_code
AND tl.language = USERENV('LANG')
AND b.INACTIVE_DATE IS NULL;
ORDER BY tl.payment_method_name; - Reporting Use Case: Generating a list of all payment methods with their translations for multiple languages is essential for localization testing and documentation.
Related Objects
The IBY_PAYMENT_METHODS_TL table has a direct, foundational relationship with several key objects in the Payments schema. Its primary foreign key constraint, IBY_PAYMENT_METHODS_TL_PK, links it to the IBY_PAYMENT_METHODS_B base table via the PAYMENT_METHOD_CODE column. This relationship is central to the Translation Table architecture. The data in this table is exposed through various application programming interfaces (APIs) and views within the IBY module that handle payment method definitions. Furthermore, the translated names stored here are referenced by numerous application screens, reports, and workflows throughout the Procure-to-Pay (P2P) and Order-to-Cash (O2C) cycles where payment methods are selected or displayed.
-
Table: IBY_PAYMENT_METHODS_TL
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_PAYMENT_METHODS_TL, object_name:IBY_PAYMENT_METHODS_TL, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_PAYMENT_METHODS_TL ,
-
Table: IBY_PAYMENT_METHODS_TL
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_PAYMENT_METHODS_TL, object_name:IBY_PAYMENT_METHODS_TL, status:VALID, product: IBY - Payments , description: IBY_PAYMENT_METHODS stores the payment methods that Oracle Payments supports. A payment method is a payment attribute on a document payable that indicates how the first party payer is going to make the payment. Examples of payment methods i , implementation_dba_data: IBY.IBY_PAYMENT_METHODS_TL ,
-
APPS.LNS_REP_UTILS dependencies on IBY_PAYMENT_METHODS_TL
12.1.1
-
APPS.IBY_PAYMENT_METHODS_PKG dependencies on IBY_PAYMENT_METHODS_TL
12.1.1
-
APPS.IBY_PAYMENT_METHODS_PKG dependencies on IBY_PAYMENT_METHODS_TL
12.2.2
-
APPS.LNS_REP_UTILS dependencies on IBY_PAYMENT_METHODS_TL
12.2.2
-
APPS.PON_EMD_AR_INTEGRATION_GRP dependencies on IBY_PAYMENT_METHODS_TL
12.2.2
-
APPS.IBY_PAYMENT_METHODS_PKG SQL Statements
12.1.1
-
APPS.IBY_PAYMENT_METHODS_PKG dependencies on FND_LANGUAGES
12.2.2
-
APPS.IBY_PAYMENT_METHODS_PKG SQL Statements
12.2.2
-
APPS.IBY_PAYMENT_METHODS_PKG dependencies on FND_LANGUAGES
12.1.1
-
VIEW: IBY.IBY_PAYMENT_METHODS_TL#
12.2.2
owner:IBY, object_type:VIEW, object_name:IBY_PAYMENT_METHODS_TL#, status:VALID,
-
VIEW: IBY.IBY_PAYMENT_METHODS_TL#
12.2.2
-
TRIGGER: APPS.IBY_PAYMENT_METHODS_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:IBY_PAYMENT_METHODS_TL+, status:VALID,
-
SYNONYM: APPS.IBY_PAYMENT_METHODS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IBY_PAYMENT_METHODS_TL, status:VALID,
-
TRIGGER: APPS.IBY_PAYMENT_METHODS_TL+
12.2.2
-
SYNONYM: APPS.IBY_PAYMENT_METHODS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IBY_PAYMENT_METHODS_TL, status:VALID,
-
VIEW: APPS.IBY_PAYMENT_METHODS_VL
12.1.1
-
VIEW: APPS.IBY_PAYMENT_METHODS_VL
12.2.2
-
FUNCTION: APPS.IBY_PAYMENT_METHODS_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:IBY_PAYMENT_METHODS_TL=, status:VALID,
-
PACKAGE BODY: APPS.IBY_PAYMENT_METHODS_PKG
12.2.2
-
PACKAGE BODY: APPS.IBY_PAYMENT_METHODS_PKG
12.1.1
-
FUNCTION: APPS.IBY_PAYMENT_METHODS_TL=
12.2.2
-
TABLE: IBY.IBY_PAYMENT_METHODS_TL
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_PAYMENT_METHODS_TL, object_name:IBY_PAYMENT_METHODS_TL, status:VALID,
-
Table: IBY_PAYMENT_METHODS_B
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_PAYMENT_METHODS_B, object_name:IBY_PAYMENT_METHODS_B, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_PAYMENT_METHODS_B ,
-
APPS.IBY_PAYMENT_METHODS_PKG dependencies on IBY_PAYMENT_METHODS_B
12.2.2
-
TABLE: IBY.IBY_PAYMENT_METHODS_TL
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_PAYMENT_METHODS_TL, object_name:IBY_PAYMENT_METHODS_TL, status:VALID,
-
PACKAGE BODY: APPS.IBY_PAYMENT_METHODS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBY_PAYMENT_METHODS_PKG, status:VALID,
-
APPS.IBY_PAYMENT_METHODS_PKG dependencies on IBY_PAYMENT_METHODS_B
12.1.1
-
APPS.IBY_PAYMENT_METHODS_PKG dependencies on FND_LOAD_UTIL
12.2.2
-
12.2.2 DBA Data
12.2.2
-
APPS.IBY_PAYMENT_METHODS_PKG dependencies on FND_LOAD_UTIL
12.1.1
-
PACKAGE BODY: APPS.IBY_PAYMENT_METHODS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IBY_PAYMENT_METHODS_PKG, status:VALID,
-
APPS.LNS_REP_UTILS dependencies on LNS_DISB_LINES
12.2.2
-
APPS.LNS_REP_UTILS dependencies on LNS_DISB_LINES
12.1.1
-
12.2.2 DBA Data
12.2.2
-
Table: IBY_PAYMENT_METHODS_B
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_PAYMENT_METHODS_B, object_name:IBY_PAYMENT_METHODS_B, status:VALID, product: IBY - Payments , description: IBY_PAYMENT_METHODS stores the payment methods that Oracle Payments supports. A payment method is a payment attribute on a document payable that indicates how the first party payer is going to make the payment. Examples of payment methods i , implementation_dba_data: IBY.IBY_PAYMENT_METHODS_B ,
-
PACKAGE BODY: APPS.LNS_REP_UTILS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:LNS_REP_UTILS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
View: IBY_PAYMENT_METHODS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_PAYMENT_METHODS_VL, object_name:IBY_PAYMENT_METHODS_VL, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_PAYMENT_METHODS_VL ,
-
View: IBY_PAYMENT_METHODS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_PAYMENT_METHODS_VL, object_name:IBY_PAYMENT_METHODS_VL, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_PAYMENT_METHODS_VL ,
-
PACKAGE BODY: APPS.LNS_REP_UTILS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:LNS_REP_UTILS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.PON_EMD_AR_INTEGRATION_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PON_EMD_AR_INTEGRATION_GRP, status:VALID,
-
12.2.2 DBA Data
12.2.2