Search Results iby_fndcpt_sys_eft_pf_tl




Overview

The IBY_FNDCPT_SYS_EFT_PF_TL table is a core data object within the Oracle Payments (IBY) module of Oracle E-Business Suite (EBS) releases 12.1.1 and 12.2.2. As a translation table (indicated by the '_TL' suffix), its primary role is to store user-defined, language-specific descriptions for system Electronic Funds Transfer (EFT) payment profiles. These profiles define the default rules and formats for electronic payment processing within the application. The table enables the multilingual support required for global deployments by allowing a single system profile code to have descriptive text in multiple installed languages.

Key Information Stored

The table's structure is designed to map internal codes to human-readable text across languages. While the full column list is not detailed in the provided metadata, a standard Oracle translation table pattern, combined with the documented foreign key, defines its critical elements. The primary stored information includes the unique system EFT profile code (SYS_EFT_PROFILE_CODE), which acts as the key to the base table, and the corresponding translated description for a specific language. It will also contain standard translation table columns such as LANGUAGE and SOURCE_LANG to manage the multilingual data set. The data is foundational for rendering profile descriptions correctly in the user interface based on the session language.

Common Use Cases and Queries

This table is primarily accessed by the application's internal localization engine to display translated descriptions. Common practical scenarios include generating reports on configured system payment profiles for audit or implementation documentation in the user's preferred language. A typical query would join this translation table with its base table to retrieve a comprehensible list. For example, to see all profile descriptions in the current session language, one might use a SQL pattern such as: SELECT b.PROFILE_CODE, t.DESCRIPTION FROM IBY_FNDCPT_SYS_EFT_PF_B b, IBY_FNDCPT_SYS_EFT_PF_TL t WHERE b.PROFILE_CODE = t.SYS_EFT_PROFILE_CODE AND t.LANGUAGE = USERENV('LANG'); Direct data manipulation in this table via INSERT, UPDATE, or DELETE is strongly discouraged and should be performed exclusively through the standard Oracle Applications administration interfaces to maintain data integrity.

Related Objects

Based on the provided ETRM relationship data, IBY_FNDCPT_SYS_EFT_PF_TL has a critical foreign key relationship with its base data table. The documented relationship is:

  • Foreign Key Reference: The column IBY_FNDCPT_SYS_EFT_PF_TL.SYS_EFT_PROFILE_CODE references a primary key in another table. While the metadata excerpt is truncated ("→ %"), the naming convention confirms it references the base table IBY_FNDCPT_SYS_EFT_PF_B (where '_B' denotes the base table). This join column is essential for correctly associating translated text with the correct system profile record.
This table is also inherently related to the FND_LANGUAGES table, which supplies the valid language codes, and is accessed by the standard Oracle Applications translation architecture.