Search Results iby_f_t_crdt_apps_all_tl
Overview
The IBY_F_T_CRDT_APPS_ALL_TL table is a core data object within the Oracle E-Business Suite (EBS) Payments module (IBY). It functions as a translation table, storing multilingual descriptions for credit application types. In Oracle EBS, translation tables (denoted by the _TL suffix) are a standard architectural pattern for supporting multiple languages. This table works in conjunction with its base table, IBY_F_T_CRDT_APPS_ALL_B, which holds the language-independent seed data. Its primary role is to enable the display of credit application type names and descriptions in a user's preferred language, a critical feature for global deployments of EBS 12.1.1 and 12.2.2.
Key Information Stored
The table's structure is defined by its primary key and its relationship to the base table. The primary key, IBY_F_T_CRDT_APPS_ALL_TL_PK, is a composite key consisting of two columns: CREDIT_APP_ID and LANGUAGE. The CREDIT_APP_ID is a foreign key that links each translated row to a specific record in the IBY_F_T_CRDT_APPS_ALL_B base table. The LANGUAGE column holds the code (e.g., 'US', 'FR', 'DE') for the translation's language. The most critical data column, though not explicitly listed in the brief metadata, is typically named something like CREDIT_APP_NAME or DESCRIPTION. This column holds the actual translated text for the credit application type. Other common columns in translation tables include SOURCE_LANG and CREATED_BY/CREATION_DATE.
Common Use Cases and Queries
The primary use case is retrieving a user-friendly, language-specific name for a credit application type within payment flows, setups, or reports. Application code will automatically query this table based on the user's session language setting. A common reporting query involves joining the translation table to its base table to present a complete view. For example, to list all credit application types in American English:
- SELECT b.CREDIT_APP_CODE, tl.CREDIT_APP_NAME, b.ENABLED_FLAG
- FROM IBY_F_T_CRDT_APPS_ALL_B b,
- IBY_F_T_CRDT_APPS_ALL_TL tl
- WHERE b.CREDIT_APP_ID = tl.CREDIT_APP_ID
- AND tl.LANGUAGE = 'US';
Direct data manipulation (INSERT, UPDATE, DELETE) on this table is strongly discouraged. Translations are typically maintained via the Oracle Application Developer responsibility or specific functional setup screens, which ensure data integrity with the base table.
Related Objects
This table has a direct and dependent relationship with the IBY_F_T_CRDT_APPS_ALL_B base table, as defined by its single foreign key. The CREDIT_APP_ID column in the TL table references the CREDIT_APP_ID in the _B table. This is a classic base/translation table pair in the Oracle EBS data model. The objects are part of the IBY (Payments) schema and are central to the configuration of credit-related payment functionalities. While not listed in the provided metadata, other objects likely to reference or join to this table include views that consolidate base and translated data for reporting, and various Payment APIs that return descriptive data for credit applications.
-
Table: IBY_F_T_CRDT_APPS_ALL_TL
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_F_T_CRDT_APPS_ALL_TL, object_name:IBY_F_T_CRDT_APPS_ALL_TL, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_F_T_CRDT_APPS_ALL_TL ,
-
Table: IBY_F_T_CRDT_APPS_ALL_TL
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_F_T_CRDT_APPS_ALL_TL, object_name:IBY_F_T_CRDT_APPS_ALL_TL, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_F_T_CRDT_APPS_ALL_TL ,
-
Table: IBY_F_T_CRDT_APPS_ALL_B
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_F_T_CRDT_APPS_ALL_B, object_name:IBY_F_T_CRDT_APPS_ALL_B, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_F_T_CRDT_APPS_ALL_B ,
-
Table: IBY_F_T_CRDT_APPS_ALL_B
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_F_T_CRDT_APPS_ALL_B, object_name:IBY_F_T_CRDT_APPS_ALL_B, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_F_T_CRDT_APPS_ALL_B ,
-
View: IBY_F_T_CRDT_APPS_ALL_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_F_T_CRDT_APPS_ALL_VL, object_name:IBY_F_T_CRDT_APPS_ALL_VL, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_F_T_CRDT_APPS_ALL_VL ,
-
View: IBY_F_T_CRDT_APPS_ALL_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_F_T_CRDT_APPS_ALL_VL, object_name:IBY_F_T_CRDT_APPS_ALL_VL, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_F_T_CRDT_APPS_ALL_VL ,