Search Results iby_f_crdt_app_status_tl
Overview
The table IBY_F_CRDT_APP_STATUS_TL is a core translation table within the Oracle E-Business Suite Payments (IBY) module for versions 12.1.1 and 12.2.2. It stores translated descriptions of credit application statuses, enabling the support of multiple languages in a global deployment. This table operates as a child to the base table IBY_F_CRDT_APP_STATUS_B, which holds the language-independent seed data. The 'TL' suffix denotes its role in Oracle's standard multilingual architecture, where it provides user-facing, translated text for the status codes defined in the base table. Its primary function is to ensure that status descriptions for credit applications within the payment processing flows are displayed correctly in the user's chosen application language.
Key Information Stored
The table's structure is designed to map a status code to its human-readable name in a specific language. The critical columns, as defined by its primary and unique keys, are:
- CREDIT_APP_STATUS_ID: A foreign key column linking directly to the primary key of the base table IBY_F_CRDT_APP_STATUS_B. This identifies the specific credit application status being described.
- LANGUAGE: The ISO code for the language of the translated text in this row (e.g., 'US' for American English). This column, combined with CREDIT_APP_STATUS_ID, forms the table's primary key (IBY_F_CRDT_APP_STATUS_TL_PK).
- NAME: The actual translated description or name for the credit application status in the specified LANGUAGE. This column is part of a unique key constraint (IBY_F_CRDT_APP_STATUS_TL_UK1) to ensure descriptive uniqueness within the system.
Common Use Cases and Queries
This table is primarily accessed by the Oracle application's runtime engine to resolve status descriptions for UI displays and reports. Common operational and reporting queries involve joining it with its base table. A typical pattern is to retrieve all translated statuses for reporting or data validation purposes:
SELECT b.CREDIT_APP_STATUS_CODE, tl.LANGUAGE, tl.NAME
FROM IBY_F_CRDT_APP_STATUS_B b,
IBY_F_CRDT_APP_STATUS_TL tl
WHERE b.CREDIT_APP_STATUS_ID = tl.CREDIT_APP_STATUS_ID
AND tl.LANGUAGE = USERENV('LANG')
ORDER BY b.CREDIT_APP_STATUS_CODE;
Another critical use case is during the implementation of new languages, where translated data for standard statuses is loaded into this table via FNDLOAD or other data migration tools, referencing the immutable IDs from the base table.
Related Objects
The table has a direct and fundamental relationship with other objects in the IBY schema:
- IBY_F_CRDT_APP_STATUS_B: This is the primary related object. A foreign key constraint enforces that every CREDIT_APP_STATUS_ID in the TL table must exist in the base (B) table. All status metadata originates here.
- IBY_CREDIT_APPLICATIONS (or similar transaction tables): While not explicitly listed in the provided metadata, transactional tables that store credit application records will likely reference status codes from the base table. The TL table is then used to present those codes meaningfully to users.
- Standard Translation Architecture: The table follows Oracle's standard pattern for translatable items, meaning it is accessed by generic application utilities and APIs that manage multilingual support.
-
Table: IBY_F_CRDT_APP_STATUS_TL
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_F_CRDT_APP_STATUS_TL, object_name:IBY_F_CRDT_APP_STATUS_TL, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_F_CRDT_APP_STATUS_TL ,
-
Table: IBY_F_CRDT_APP_STATUS_TL
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_F_CRDT_APP_STATUS_TL, object_name:IBY_F_CRDT_APP_STATUS_TL, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_F_CRDT_APP_STATUS_TL ,
-
VIEW: IBY.IBY_F_CRDT_APP_STATUS_TL#
12.2.2
owner:IBY, object_type:VIEW, object_name:IBY_F_CRDT_APP_STATUS_TL#, status:VALID,
-
SYNONYM: APPS.IBY_F_CRDT_APP_STATUS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IBY_F_CRDT_APP_STATUS_TL, status:VALID,
-
VIEW: IBY.IBY_F_CRDT_APP_STATUS_TL#
12.2.2
-
SYNONYM: APPS.IBY_F_CRDT_APP_STATUS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IBY_F_CRDT_APP_STATUS_TL, status:VALID,
-
VIEW: APPS.IBY_F_CRDT_APP_STATUS_VL
12.2.2
-
VIEW: APPS.IBY_F_CRDT_APP_STATUS_VL
12.1.1
-
TABLE: IBY.IBY_F_CRDT_APP_STATUS_TL
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_F_CRDT_APP_STATUS_TL, object_name:IBY_F_CRDT_APP_STATUS_TL, status:VALID,
-
TABLE: IBY.IBY_F_CRDT_APP_STATUS_TL
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_F_CRDT_APP_STATUS_TL, object_name:IBY_F_CRDT_APP_STATUS_TL, status:VALID,
-
Table: IBY_F_CRDT_APP_STATUS_B
12.2.2
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_F_CRDT_APP_STATUS_B, object_name:IBY_F_CRDT_APP_STATUS_B, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_F_CRDT_APP_STATUS_B ,
-
View: IBY_F_CRDT_APP_STATUS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_F_CRDT_APP_STATUS_VL, object_name:IBY_F_CRDT_APP_STATUS_VL, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_F_CRDT_APP_STATUS_VL ,
-
Table: IBY_F_CRDT_APP_STATUS_B
12.1.1
owner:IBY, object_type:TABLE, fnd_design_data:IBY.IBY_F_CRDT_APP_STATUS_B, object_name:IBY_F_CRDT_APP_STATUS_B, status:VALID, product: IBY - Payments , implementation_dba_data: IBY.IBY_F_CRDT_APP_STATUS_B ,
-
View: IBY_F_CRDT_APP_STATUS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_F_CRDT_APP_STATUS_VL, object_name:IBY_F_CRDT_APP_STATUS_VL, status:VALID, product: IBY - Payments , implementation_dba_data: APPS.IBY_F_CRDT_APP_STATUS_VL ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.IBY_F_CRDT_APP_STATUS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_F_CRDT_APP_STATUS_VL, object_name:IBY_F_CRDT_APP_STATUS_VL, status:VALID,
-
VIEW: APPS.IBY_F_CRDT_APP_STATUS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBY.IBY_F_CRDT_APP_STATUS_VL, object_name:IBY_F_CRDT_APP_STATUS_VL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - IBY Tables and Views
12.1.1
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,
-
eTRM - IBY Tables and Views
12.2.2
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,
-
eTRM - IBY Tables and Views
12.1.1
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,
-
eTRM - IBY Tables and Views
12.2.2
description: Stores the user privilege settings for viewing sensitive data in iPayment operations UI ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1