Search Results jtf_ih_action_items_tl_pk
Overview
The JTF_IH_ACTION_ITEMS_TL table is a core translation (TL) table within the Oracle E-Business Suite (EBS) CRM Foundation module. It is owned by the JTF schema and is valid for both releases 12.1.1 and 12.2.2. Its primary role is to store translated, language-specific versions of the descriptive content for Action Items. Action Items are tasks or activities generated within the Interaction History module, which tracks customer interactions across various channels. This table enables the EBS application to present Action Item descriptions and other translatable attributes in the language of the user, supporting global deployments. It exists in a standard parent-child relationship with its base table, JTF_IH_ACTION_ITEMS_B, which holds the non-translatable, structural data.
Key Information Stored
The table stores multilingual text for corresponding records in the base table. Its structure is defined by a composite primary key and language-specific data columns. The critical columns include:
- ACTION_ITEM_ID: The foreign key that links each translation row to its corresponding master record in JTF_IH_ACTION_ITEMS_B. This is part of the primary key.
- LANGUAGE: The language code (e.g., 'US' for American English) for the translated text. This completes the primary key (JTF_IH_ACTION_ITEMS_TL_PK) alongside ACTION_ITEM_ID.
- SOURCE_LANG: A standard column in TL tables indicating the original language in which the data was entered.
- Translatable descriptive columns, which typically include ACTION_ITEM_NAME and potentially other columns like DESCRIPTION. These hold the actual translated text displayed in the user interface.
Common Use Cases and Queries
This table is primarily accessed by the application's multilingual architecture to serve translated content. Common operational and reporting scenarios include retrieving user-facing descriptions for reports or data extracts in a specific language, and validating translation coverage. A typical query joins the translation table with its base table and uses the LANGUAGE and SOURCE_LANG columns to filter records correctly.
Sample Query: To retrieve the English and French names for action items, a developer might use:
SELECT b.ACTION_ITEM_ID, tl_en.ACTION_ITEM_NAME name_en, tl_fr.ACTION_ITEM_NAME name_fr FROM JTF_IH_ACTION_ITEMS_B b, JTF_IH_ACTION_ITEMS_TL tl_en, JTF_IH_ACTION_ITEMS_TL tl_fr WHERE b.ACTION_ITEM_ID = tl_en.ACTION_ITEM_ID AND tl_en.LANGUAGE = 'US' AND b.ACTION_ITEM_ID = tl_fr.ACTION_ITEM_ID AND tl_fr.LANGUAGE = 'F'
For standard application screens, the underlying view JTF_IH_ACTION_ITEMS_VL (the "VL" suffix denotes a view that includes translations) is typically queried instead, as it automatically handles the language filter based on the user's session.
Related Objects
The table has direct, integral relationships with several key objects in the Interaction History module:
- JTF_IH_ACTION_ITEMS_B: The base table. A foreign key constraint (JTF_IH_ACTION_ITEMS_TL.ACTION_ITEM_ID) enforces that every record in the TL table must have a corresponding parent record in this base table.
- JTF_IH_ACTION_ITEMS_VL: The primary view for accessing Action Item data. This view performs a join between the _B and _TL tables, applying a filter for the current session language, and is the standard object used for reporting and queries within the application.
- CRM Foundation and Interaction History APIs: Public PL/SQL APIs (likely within the JTF_IH_PUB package or similar) will internally manage DML operations on this table to maintain data integrity when creating or updating translated Action Items.
-
Table: JTF_IH_ACTION_ITEMS_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_IH_ACTION_ITEMS_TL, object_name:JTF_IH_ACTION_ITEMS_TL, status:VALID, product: JTF - CRM Foundation , description: Translation table for Action Items. , implementation_dba_data: JTF.JTF_IH_ACTION_ITEMS_TL ,
-
Table: JTF_IH_ACTION_ITEMS_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_IH_ACTION_ITEMS_TL, object_name:JTF_IH_ACTION_ITEMS_TL, status:VALID, product: JTF - CRM Foundation , description: Translation table for Action Items. , implementation_dba_data: JTF.JTF_IH_ACTION_ITEMS_TL ,
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,