Search Results cs_party_role_groups_tl
Overview
CS_PARTY_ROLE_GROUPS_TL is a Multi-Lingual Support (MLS) translation table owned by the CS (Service) schema in Oracle E-Business Suite. It stores the translatable attributes—primarily the display name and description—of party role group definitions used by the Service module. Party role groups provide a mechanism to segment parties (customers, contacts, organizations) by the roles they play, enabling targeted service, warranty, and support processing. Because the table is MLS-enabled, one logical role group can be represented by multiple rows, one per installed language, keyed by PARTY_ROLE_GROUP_CODE and LANGUAGE.
Following a Data Vault modeling heuristic derived from its foreign key structure, this object is classified as satellite-leaning. It carries descriptive, language-dependent context that hangs off the base definition rather than introducing new business entities or relationships. The parent table CS_PARTY_ROLE_GROUPS_B holds the language-independent definition; CS_PARTY_ROLE_GROUPS_TL holds the language-dependent translation layer.
Key Information Stored
The table contains eleven documented columns. The most significant are:
- PARTY_ROLE_GROUP_CODE — The business identifier for the role group; part of the primary key and the foreign key to CS_PARTY_ROLE_GROUPS_B.
- LANGUAGE — The NLS language code of the row; part of the primary key and the discriminator that makes this an MLS table.
- NAME — The translated display name of the party role group, shown to users in the selected language.
- DESCRIPTION — The translated descriptive text for the role group.
- SOURCE_LANG — The language in which the base record was originally created, used for MLS fallback behavior.
- ZD_EDITION_NAME — The editioning column used in EBS 12.2 online patching; appears in both unique indexes.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — Standard WHO audit columns tracking insert and update metadata.
The surrogate/primary key is CS_PARTY_ROLE_GROUPS_TL_PK, defined on (PARTY_ROLE_GROUP_CODE, LANGUAGE). Two unique indexes act as business-key candidates: CS_PARTY_ROLE_GROUPS_TL_U1 on (PARTY_ROLE_GROUP_CODE, LANGUAGE, ZD_EDITION_NAME) and CS_PARTY_ROLE_GROUPS_TL_U2 on (NAME, LANGUAGE, ZD_EDITION_NAME). The U2 constraint supports the convention that a role group name is unique within a given language.
Common Use Cases and Queries
Typical usage retrieves translated role group names for reporting, LOV definition, or service configuration screens. A join to the base table is required to obtain language-independent attributes:
- Retrieve names in a specific language:
SELECT tl.name, tl.description FROM cs_party_role_groups_tl tl WHERE tl.language = USERENV('LANG') AND tl.party_role_group_code = :code; - Join base and translation:
SELECT b.party_role_group_code, t.name FROM cs_party_role_groups_b b, cs_party_role_groups_tl t WHERE b.party_role_group_code = t.party_role_group_code AND t.language = 'US'; - Audit languages available for a group:
SELECT language FROM cs_party_role_groups_tl WHERE party_role_group_code = :code; - Reporting on translated role groups for a multi-language rollout, filtering by SOURCE_LANG to distinguish original vs. translated rows.
Because the table is MLS, direct DML is generally discouraged; use the EBS MLS APIs or the underlying setup forms so the base and translation rows stay synchronized.
Related Objects
The following objects are most significant to working with this table:
- CS_PARTY_ROLE_GROUPS_B — The MLS base table; joined on PARTY_ROLE_GROUP_CODE. All language-independent attributes reside here.
- CS_PARTY_ROLE_GROUPS_TL_PK — Primary key constraint on (PARTY_ROLE_GROUP_CODE, LANGUAGE).
- CS_PARTY_ROLE_GROUPS_TL_U1 / U2 — Unique indexes supporting business-key uniqueness.
- FND_LANGUAGES — Join on LANGUAGE to resolve language descriptions.
- FND_TERRITORIES / NLS views — Supporting MLS metadata used to filter and display translations.
- Service module party role setup forms — The UI layer that populates these tables through the CS product configuration flows.
Consult the ETRM and CS product documentation for the authoritative definition before extending or integrating against this table.
-
Table: CS_PARTY_ROLE_GROUPS_TL
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_PARTY_ROLE_GROUPS_TL, object_name:CS_PARTY_ROLE_GROUPS_TL, status:VALID, product: CS - Service , description: This is a MLS table and stores party role group definition. , implementation_dba_data: CS.CS_PARTY_ROLE_GROUPS_TL ,
-
Table: CS_PARTY_ROLE_GROUPS_TL
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_PARTY_ROLE_GROUPS_TL, object_name:CS_PARTY_ROLE_GROUPS_TL, status:VALID, product: CS - Service , description: This is a MLS table and stores party role group definition. , implementation_dba_data: CS.CS_PARTY_ROLE_GROUPS_TL ,
-
APPS.CS_PARTY_ROLE_GROUPS_PKG SQL Statements
12.2.2
-
APPS.CS_PARTY_ROLE_GROUPS_PKG SQL Statements
12.1.1
-
VIEW: CS.CS_PARTY_ROLE_GROUPS_TL#
12.2.2
owner:CS, object_type:VIEW, object_name:CS_PARTY_ROLE_GROUPS_TL#, status:VALID,
-
TRIGGER: APPS.CS_PARTY_ROLE_GROUPS_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:CS_PARTY_ROLE_GROUPS_TL+, status:VALID,
-
PACKAGE BODY: APPS.CS_PARTY_ROLE_GROUPS_PKG
12.1.1
-
PACKAGE BODY: APPS.CS_PARTY_ROLE_GROUPS_PKG
12.2.2
-
SYNONYM: APPS.CS_PARTY_ROLE_GROUPS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_PARTY_ROLE_GROUPS_TL, status:VALID,
-
SYNONYM: APPS.CS_PARTY_ROLE_GROUPS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_PARTY_ROLE_GROUPS_TL, status:VALID,
-
VIEW: APPS.CS_PARTY_ROLE_GROUPS_VL
12.1.1
-
TRIGGER: APPS.CS_PARTY_ROLE_GROUPS_TL+
12.2.2
-
VIEW: CS.CS_PARTY_ROLE_GROUPS_TL#
12.2.2
-
VIEW: APPS.CS_PARTY_ROLE_GROUPS_VL
12.2.2
-
FUNCTION: APPS.CS_PARTY_ROLE_GROUPS_TL=
12.2.2
-
TABLE: CS.CS_PARTY_ROLE_GROUPS_TL
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_PARTY_ROLE_GROUPS_TL, object_name:CS_PARTY_ROLE_GROUPS_TL, status:VALID,
-
TABLE: CS.CS_PARTY_ROLE_GROUPS_TL
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_PARTY_ROLE_GROUPS_TL, object_name:CS_PARTY_ROLE_GROUPS_TL, status:VALID,
-
FUNCTION: APPS.CS_PARTY_ROLE_GROUPS_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:CS_PARTY_ROLE_GROUPS_TL=, status:VALID,
-
PACKAGE BODY: APPS.CS_PARTY_ROLE_GROUPS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_PARTY_ROLE_GROUPS_PKG, status:VALID,
-
Table: CS_PARTY_ROLE_GROUPS_B
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_PARTY_ROLE_GROUPS_B, object_name:CS_PARTY_ROLE_GROUPS_B, status:VALID, product: CS - Service , description: This is the base table for storing all the party role group definition. , implementation_dba_data: CS.CS_PARTY_ROLE_GROUPS_B ,
-
Table: CS_PARTY_ROLE_GROUPS_B
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_PARTY_ROLE_GROUPS_B, object_name:CS_PARTY_ROLE_GROUPS_B, status:VALID, product: CS - Service , description: This is the base table for storing all the party role group definition. , implementation_dba_data: CS.CS_PARTY_ROLE_GROUPS_B ,
-
PACKAGE BODY: APPS.CS_PARTY_ROLE_GROUPS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_PARTY_ROLE_GROUPS_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
View: CS_PARTY_ROLE_GROUPS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_PARTY_ROLE_GROUPS_VL, object_name:CS_PARTY_ROLE_GROUPS_VL, status:VALID, product: CS - Service , description: This is a _VL view. This view is based on table cs_party_role_groups_b and _tl table. , implementation_dba_data: APPS.CS_PARTY_ROLE_GROUPS_VL ,
-
12.2.2 DBA Data
12.2.2
-
View: CS_PARTY_ROLE_GROUPS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_PARTY_ROLE_GROUPS_VL, object_name:CS_PARTY_ROLE_GROUPS_VL, status:VALID, product: CS - Service , description: This is a _VL view. This view is based on table cs_party_role_groups_b and _tl table. , implementation_dba_data: APPS.CS_PARTY_ROLE_GROUPS_VL ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.CS_PARTY_ROLE_GROUPS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_PARTY_ROLE_GROUPS_VL, object_name:CS_PARTY_ROLE_GROUPS_VL, status:VALID,
-
VIEW: APPS.CS_PARTY_ROLE_GROUPS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_PARTY_ROLE_GROUPS_VL, object_name:CS_PARTY_ROLE_GROUPS_VL, status:VALID,
-
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.1.1 DBA Data
12.1.1
-
APPS.CS_PARTY_ROLE_GROUPS_PKG dependencies on CS_PARTY_ROLE_GROUPS_TL
12.1.1
-
APPS.CS_PARTY_ROLE_GROUPS_PKG dependencies on CS_PARTY_ROLE_GROUPS_TL
12.2.2
-
APPS.CS_PARTY_ROLE_GROUPS_PKG dependencies on FND_LANGUAGES
12.1.1
-
APPS.CS_PARTY_ROLE_GROUPS_PKG dependencies on FND_LANGUAGES
12.2.2
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: PUBLIC.DATABASE_PROPERTIES
12.2.2
owner:PUBLIC, object_type:SYNONYM, object_name:DATABASE_PROPERTIES, status:VALID,
-
APPS.CS_PARTY_ROLE_GROUPS_PKG dependencies on CS_PARTY_ROLE_GROUPS_B
12.1.1
-
APPS.CS_PARTY_ROLE_GROUPS_PKG dependencies on CS_PARTY_ROLE_GROUPS_B
12.2.2
-
12.2.2 DBA Data
12.2.2
-
eTRM - CS Tables and Views
12.2.2
-
eTRM - CS Tables and Views
12.1.1
description: Table to store web conference details for an SR. ,
-
PACKAGE: SYS.DBMS_STANDARD
12.2.2
owner:SYS, object_type:PACKAGE, object_name:DBMS_STANDARD, status:VALID,