Search Results iby_fndcpt_user_dc_pf_tl
Overview
The IBY_FNDCPT_USER_DC_PF_TL table is a core data object within the Oracle E-Business Suite Payments (IBY) module, specifically for versions 12.1.1 and 12.2.2. It functions as a translation table, storing user-defined descriptive content for Disbursement Control Profile (DCP) configurations in multiple languages. This table enables the internationalization of profile names and descriptions, allowing a single profile definition in the base table (IBY_FNDCPT_USER_DC_PF_B) to be presented in the application's user interface in the language of the logged-in user. Its role is critical for supporting global deployments where payment controls and their associated rules must be clearly understood by users across different regions.
Key Information Stored
The table's primary purpose is to hold the translated, user-facing text for Disbursement Control Profiles. While the specific column list is not detailed in the provided metadata, the structure of a standard Translation (TL) table in Oracle EBS dictates its key components. It will contain at minimum: a foreign key column (USER_DC_PROFILE_CODE) linking to the base table's unique identifier, a language column (typically LANGUAGE or LANG_CODE), and columns for the translated name (e.g., USER_PROFILE_NAME) and description. The combination of the profile code and language code typically forms the table's primary key. The data stored is the human-readable label for a payment control rule set in a specific language.
Common Use Cases and Queries
The primary use case is the dynamic display of profile information within the Oracle Payments user interface based on the session language. It is also essential for generating multilingual reports on payment control setups. Common queries involve joining this table with its base table to retrieve a complete, language-specific profile definition. A typical SQL pattern for retrieving active profiles for the current session language would be:
- SELECT B.USER_DC_PROFILE_CODE, TL.USER_PROFILE_NAME, TL.DESCRIPTION
- FROM IBY_FNDCPT_USER_DC_PF_B B, IBY_FNDCPT_USER_DC_PF_TL TL
- WHERE B.USER_DC_PROFILE_CODE = TL.USER_DC_PROFILE_CODE
- AND TL.LANGUAGE = USERENV('LANG');
Administrators may also query this table to audit or manage translations for a specific profile across all installed languages.
Related Objects
As documented in the provided metadata, IBY_FNDCPT_USER_DC_PF_TL has a direct and essential foreign key relationship with its corresponding base table. This relationship is the core of its functionality.
- IBY_FNDCPT_USER_DC_PF_B: This is the base table that stores the operational and structural definition of a User Disbursement Control Profile. The TL table references it via the USER_DC_PROFILE_CODE column. Any profile must exist in the '_B' table before translations can be entered into the '_TL' table. This is a one-to-many relationship, where one record in the base table can have multiple corresponding translation records in the TL table for different languages.
-
Table: IBY_FNDCPT_USER_DC_PF_TL
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_FNDCPT_USER_DC_PF_TL, object_name:IBY_FNDCPT_USER_DC_PF_TL, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_FNDCPT_USER_DC_PF_TL ,
-
Table: IBY_FNDCPT_USER_DC_PF_TL
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_FNDCPT_USER_DC_PF_TL, object_name:IBY_FNDCPT_USER_DC_PF_TL, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_FNDCPT_USER_DC_PF_TL ,
-
Table: IBY_FNDCPT_USER_DC_PF_B
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_FNDCPT_USER_DC_PF_B, object_name:IBY_FNDCPT_USER_DC_PF_B, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_FNDCPT_USER_DC_PF_B ,
-
Table: IBY_FNDCPT_USER_DC_PF_B
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_FNDCPT_USER_DC_PF_B, object_name:IBY_FNDCPT_USER_DC_PF_B, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_FNDCPT_USER_DC_PF_B ,
-
View: IBY_FNDCPT_USER_DC_PF_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_FNDCPT_USER_DC_PF_VL, object_name:IBY_FNDCPT_USER_DC_PF_VL, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_FNDCPT_USER_DC_PF_VL ,
-
View: IBY_FNDCPT_USER_DC_PF_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_FNDCPT_USER_DC_PF_VL, object_name:IBY_FNDCPT_USER_DC_PF_VL, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_FNDCPT_USER_DC_PF_VL ,