Search Results jtf_rs_groups_tl
Overview
The JTF_RS_GROUPS_TL table is a core component of the CRM Foundation module within Oracle E-Business Suite (EBS) versions 12.1.1 and 12.2.2. As a translation table (denoted by the "_TL" suffix), its primary role is to provide multi-language support (MLS) for the base resource group data stored in JTF_RS_GROUPS_B. This design pattern is standard across the EBS architecture, separating language-invariant transactional data in a base table from language-specific descriptive data in a corresponding translation table. The table is owned by the JTF (CRM Foundation) schema and is essential for enabling the global deployment of the CRM resource management functionality by storing translated group names and descriptions.
Key Information Stored
The table stores the language-specific attributes for resource groups. Its structure is defined by a composite primary key consisting of the GROUP_ID and LANGUAGE columns. The GROUP_ID is a foreign key that links each translation record to its corresponding master record in JTF_RS_GROUPS_B. The LANGUAGE column holds the language code (e.g., 'US' for American English, 'KO' for Korean) for the translation. The most critical data columns stored in this table are typically NAME and DESCRIPTION, which contain the translated text for the resource group's name and a longer descriptive note, respectively. Additional standard columns like CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN are also present to track row history.
Common Use Cases and Queries
This table is primarily accessed by the application's MLS engine to display group information in a user's session language. Common operational and reporting scenarios include generating resource group listings for localized user interfaces and auditing translated content. A standard query to retrieve translated group information for a specific language would join the base and translation tables. For example, to get all group names in American English, one might use:
- SELECT b.GROUP_ID, tl.NAME, tl.DESCRIPTION
- FROM jtf_rs_groups_b b, jtf_rs_groups_tl tl
- WHERE b.GROUP_ID = tl.GROUP_ID
- AND tl.LANGUAGE = 'US';
For reporting, it is crucial to always include the LANGUAGE filter in the WHERE clause to avoid duplicate rows from multiple translations. Administrators may also query this table to identify groups missing translations for a target language or to audit updates to translated text.
Related Objects
JTF_RS_GROUPS_TL has a direct and mandatory relationship with its base table, JTF_RS_GROUPS_B, via the foreign key on GROUP_ID. The primary key constraint JTF_RS_GROUPS_TL_PK enforces uniqueness on the GROUP_ID and LANGUAGE combination. This translation table is intrinsically linked to the Resource Manager (JTFRS) APIs and the underlying resource management data model. Changes to group translations are typically managed through the standard EBS MLS utilities and the CRM Foundation's user interface for administering resource groups, rather than via direct SQL manipulation. Other related objects may include views that present a language-specific snapshot of resource group data by joining these two tables.
-
Table: JTF_RS_GROUPS_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_GROUPS_TL, object_name:JTF_RS_GROUPS_TL, status:VALID, product: JTF - CRM Foundation , description: Translation table for JTF_RS_GROUPS_B. It is used to store all columns and data that are needed for Multi-Language Support. , implementation_dba_data: JTF.JTF_RS_GROUPS_TL ,
-
Table: JTF_RS_GROUPS_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_GROUPS_TL, object_name:JTF_RS_GROUPS_TL, status:VALID, product: JTF - CRM Foundation , description: Translation table for JTF_RS_GROUPS_B. It is used to store all columns and data that are needed for Multi-Language Support. , implementation_dba_data: JTF.JTF_RS_GROUPS_TL ,
-
View: JTF_RS_GROUPS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GROUPS_VL, object_name:JTF_RS_GROUPS_VL, status:VALID, product: JTF - CRM Foundation , description: MLS View forJTF_RS_GROUPS_B and JTF_RS_GROUPS_TL. , implementation_dba_data: APPS.JTF_RS_GROUPS_VL ,
-
View: JTF_RS_GROUPS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GROUPS_VL, object_name:JTF_RS_GROUPS_VL, status:VALID, product: JTF - CRM Foundation , description: MLS View forJTF_RS_GROUPS_B and JTF_RS_GROUPS_TL. , implementation_dba_data: APPS.JTF_RS_GROUPS_VL ,
-
View: JTF_RS_DBI_RES_GRP_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_DBI_RES_GRP_VL, object_name:JTF_RS_DBI_RES_GRP_VL, status:VALID, product: JTF - CRM Foundation , implementation_dba_data: APPS.JTF_RS_DBI_RES_GRP_VL ,
-
View: JTF_RS_GRP_DENORM_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GRP_DENORM_VL, object_name:JTF_RS_GRP_DENORM_VL, status:VALID, product: JTF - CRM Foundation , description: This view has the denorm records for all groups , implementation_dba_data: APPS.JTF_RS_GRP_DENORM_VL ,
-
View: JTF_RS_GRP_DENORM_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GRP_DENORM_VL, object_name:JTF_RS_GRP_DENORM_VL, status:VALID, product: JTF - CRM Foundation , description: This view has the denorm records for all groups , implementation_dba_data: APPS.JTF_RS_GRP_DENORM_VL ,
-
View: JTF_RS_DBI_RES_GRP_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_DBI_RES_GRP_VL, object_name:JTF_RS_DBI_RES_GRP_VL, status:VALID, product: JTF - CRM Foundation , implementation_dba_data: APPS.JTF_RS_DBI_RES_GRP_VL ,
-
View: JTF_RS_DBI_UNSEC_GRPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_DBI_UNSEC_GRPS_V, object_name:JTF_RS_DBI_UNSEC_GRPS_V, status:VALID, product: JTF - CRM Foundation , implementation_dba_data: APPS.JTF_RS_DBI_UNSEC_GRPS_V ,
-
View: JTF_RS_DBI_UNSEC_GRPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_DBI_UNSEC_GRPS_V, object_name:JTF_RS_DBI_UNSEC_GRPS_V, status:VALID, product: JTF - CRM Foundation , implementation_dba_data: APPS.JTF_RS_DBI_UNSEC_GRPS_V ,
-
Table: JTF_RS_GROUPS_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_GROUPS_B, object_name:JTF_RS_GROUPS_B, status:VALID, product: JTF - CRM Foundation , description: Base Table JTF_RS_GROUPS_B stores general information about a given Group. , implementation_dba_data: JTF.JTF_RS_GROUPS_B ,
-
Table: JTF_RS_GROUPS_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_GROUPS_B, object_name:JTF_RS_GROUPS_B, status:VALID, product: JTF - CRM Foundation , description: Base Table JTF_RS_GROUPS_B stores general information about a given Group. , implementation_dba_data: JTF.JTF_RS_GROUPS_B ,
-
View: JTF_RS_GROUP_DTLS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GROUP_DTLS_VL, object_name:JTF_RS_GROUP_DTLS_VL, status:VALID, product: JTF - CRM Foundation , description: This view has the groups details including name and manager , implementation_dba_data: APPS.JTF_RS_GROUP_DTLS_VL ,
-
View: JTF_RS_GROUP_DTLS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GROUP_DTLS_VL, object_name:JTF_RS_GROUP_DTLS_VL, status:VALID, product: JTF - CRM Foundation , description: This view has the groups details including name and manager , implementation_dba_data: APPS.JTF_RS_GROUP_DTLS_VL ,
-
View: JTF_RS_SRP_GROUPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_SRP_GROUPS_V, object_name:JTF_RS_SRP_GROUPS_V, status:VALID, product: JTF - CRM Foundation , description: View for fetching the Default (Primary) group for a Salesrep. , implementation_dba_data: APPS.JTF_RS_SRP_GROUPS_V ,
-
View: JTF_RS_SRP_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_SRP_GROUPS_V, object_name:JTF_RS_SRP_GROUPS_V, status:VALID, product: JTF - CRM Foundation , description: View for fetching the Default (Primary) group for a Salesrep. , implementation_dba_data: APPS.JTF_RS_SRP_GROUPS_V ,