Search Results cs_sr_link_types_tl
Overview
The CS_SR_LINK_TYPES_TL table is a core translation table within the Oracle E-Business Suite (EBS) Service (CS) module, specifically for versions 12.1.1 and 12.2.2. It functions as the multilingual repository for user-facing text associated with service request link types. Its primary role is to store the translated name and description for each link type defined in the base table, CS_SR_LINK_TYPES_B. This architecture enables the application to present link type information in the language of the user's session, supporting global deployments. The table is a critical component for maintaining data integrity and user experience in the service request linking functionality.
Key Information Stored
The table's structure is designed to support multi-language data. The primary key uniquely identifies a translation record for a specific link type and language. Key columns include:
- LINK_TYPE_ID: The foreign key to the base table CS_SR_LINK_TYPES_B. It identifies the core link type being translated.
- LANGUAGE: The language code (e.g., 'US' for American English) for the translated text. Combined with LINK_TYPE_ID, it forms the table's primary key.
- NAME: The translated, user-displayable name for the link type (e.g., "Related To", "Caused By").
- DESCRIPTION: The translated description providing further detail about the purpose and usage of the link type.
- SOURCE_LANG: A standard column in EBS translation tables that records the original language in which the data was entered.
Common Use Cases and Queries
This table is primarily accessed to retrieve localized link type information for UI display and reporting. A common use case is populating a list of values (LOV) for selecting a link type when creating a relationship between service requests. For reporting, it is used to join translated names onto base data. A typical query pattern retrieves translations for the current session language using the NLS_LANGUAGE parameter or a specific language code.
Sample Query:
SELECT lt_b.LINK_TYPE_CODE,
lt_tl.NAME,
lt_tl.DESCRIPTION
FROM CS_SR_LINK_TYPES_B lt_b,
CS_SR_LINK_TYPES_TL lt_tl
WHERE lt_b.LINK_TYPE_ID = lt_tl.LINK_TYPE_ID
AND lt_tl.LANGUAGE = USERENV('LANG');
Related Objects
The table has a direct and singular dependency on the base definition table, as documented in the provided metadata. The relationship is enforced via a foreign key constraint.
- CS_SR_LINK_TYPES_B: This is the primary related object. The CS_SR_LINK_TYPES_TL table references it through the foreign key column LINK_TYPE_ID. All translation records are child records of a parent row in this base table, which holds the seed code and non-translatable attributes for each link type.
-
Table: CS_SR_LINK_TYPES_TL
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SR_LINK_TYPES_TL, object_name:CS_SR_LINK_TYPES_TL, status:VALID, product: CS - Service , description: This table has all the translation attributes for the base link type table, CS_SR_LINK_TYPES_B.It store the name and description of each link type. , implementation_dba_data: CS.CS_SR_LINK_TYPES_TL ,
-
Table: CS_SR_LINK_TYPES_TL
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SR_LINK_TYPES_TL, object_name:CS_SR_LINK_TYPES_TL, status:VALID, product: CS - Service , description: This table has all the translation attributes for the base link type table, CS_SR_LINK_TYPES_B.It store the name and description of each link type. , implementation_dba_data: CS.CS_SR_LINK_TYPES_TL ,
-
APPS.CS_ERES_INT_PKG dependencies on CS_SR_LINK_TYPES_TL
12.1.1
-
APPS.CS_ERES_INT_PKG dependencies on CS_SR_LINK_TYPES_TL
12.2.2
-
APPS.CS_SR_LINK_TYPES_PKG dependencies on CS_SR_LINK_TYPES_TL
12.1.1
-
APPS.CS_SR_LINK_TYPES_PKG dependencies on CS_SR_LINK_TYPES_TL
12.2.2
-
APPS.CS_SR_LINK_TYPES_PKG SQL Statements
12.2.2
-
APPS.CS_SR_LINK_TYPES_PKG dependencies on FND_LANGUAGES
12.2.2
-
APPS.CS_SR_LINK_TYPES_PKG SQL Statements
12.1.1
-
VIEW: CS.CS_SR_LINK_TYPES_TL#
12.2.2
owner:CS, object_type:VIEW, object_name:CS_SR_LINK_TYPES_TL#, status:VALID,
-
VIEW: CS.CS_SR_LINK_TYPES_TL#
12.2.2
-
APPS.CS_SR_LINK_TYPES_PKG dependencies on FND_LANGUAGES
12.1.1
-
SYNONYM: APPS.CS_SR_LINK_TYPES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_SR_LINK_TYPES_TL, status:VALID,
-
TRIGGER: APPS.CS_SR_LINK_TYPES_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:CS_SR_LINK_TYPES_TL+, status:VALID,
-
TRIGGER: APPS.CS_SR_LINK_TYPES_TL+
12.2.2
-
APPS.CS_SR_LINK_TYPES_PKG dependencies on CS_SR_LINK_TYPES_B
12.1.1
-
SYNONYM: APPS.CS_SR_LINK_TYPES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_SR_LINK_TYPES_TL, status:VALID,
-
PACKAGE BODY: APPS.CS_SR_LINK_TYPES_PKG
12.2.2
-
APPS.CS_SR_LINK_TYPES_PKG dependencies on CS_SR_LINK_TYPES_B
12.2.2
-
PACKAGE BODY: APPS.CS_SR_LINK_TYPES_PKG
12.1.1
-
VIEW: APPS.CS_SR_LINK_TYPES_VL
12.2.2
-
VIEW: APPS.CS_SR_LINKS_EXT_V
12.1.1
-
FUNCTION: APPS.CS_SR_LINK_TYPES_TL=
12.2.2
-
APPS.CS_ERES_INT_PKG dependencies on CS_INCIDENTS_ALL_B
12.2.2
-
APPS.CS_ERES_INT_PKG dependencies on CS_INCIDENTS_ALL_B
12.1.1
-
VIEW: APPS.CS_SR_LINK_TYPES_VL
12.1.1
-
Table: CS_SR_LINK_TYPES_B
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SR_LINK_TYPES_B, object_name:CS_SR_LINK_TYPES_B, status:VALID, product: CS - Service , description: This table is used to store all the valid relationship Types between service request and service request and between service request and other business objects. The relationship description is stored in the translation table CS_SR_LINK_TY , implementation_dba_data: CS.CS_SR_LINK_TYPES_B ,
-
VIEW: APPS.CS_SR_LINKS_EXT_V
12.2.2
-
Table: CS_SR_LINK_TYPES_B
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SR_LINK_TYPES_B, object_name:CS_SR_LINK_TYPES_B, status:VALID, product: CS - Service , description: This table is used to store all the valid relationship Types between service request and service request and between service request and other business objects. The relationship description is stored in the translation table CS_SR_LINK_TY , implementation_dba_data: CS.CS_SR_LINK_TYPES_B ,
-
FUNCTION: APPS.CS_SR_LINK_TYPES_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:CS_SR_LINK_TYPES_TL=, status:VALID,
-
APPS.CS_ERES_INT_PKG dependencies on CS_INCIDENTS_ALL_TL
12.1.1
-
TABLE: CS.CS_SR_LINK_TYPES_TL
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SR_LINK_TYPES_TL, object_name:CS_SR_LINK_TYPES_TL, status:VALID,
-
TABLE: CS.CS_SR_LINK_TYPES_TL
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_SR_LINK_TYPES_TL, object_name:CS_SR_LINK_TYPES_TL, status:VALID,
-
APPS.CS_ERES_INT_PKG dependencies on CS_INCIDENT_LINKS
12.2.2
-
PACKAGE BODY: APPS.CS_SR_LINK_TYPES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_SR_LINK_TYPES_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
APPS.CS_ERES_INT_PKG dependencies on CS_INCIDENT_STATUSES_TL
12.1.1
-
VIEW: APPS.CS_INCIDENT_LINKS_TO_V
12.2.2
-
VIEW: APPS.CS_INCIDENT_LINKS_TO_V_SEC
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.CS_SR_LINK_TYPES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_SR_LINK_TYPES_PKG, status:VALID,
-
APPS.CS_ERES_INT_PKG dependencies on CS_INCIDENT_LINKS
12.1.1
-
View: CS_SR_LINK_TYPES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_LINK_TYPES_VL, object_name:CS_SR_LINK_TYPES_VL, status:VALID, product: CS - Service , description: View has information of service request relationship types. This view is based on CS_SR_LINK_TYPES_B and _TL and is used to select the translated name and description. New for 1159. , implementation_dba_data: APPS.CS_SR_LINK_TYPES_VL ,
-
VIEW: APPS.CS_INCIDENT_LINKS_TO_V
12.1.1
-
VIEW: APPS.CS_INCIDENT_LINKS_TO_V_SEC
12.1.1
-
APPS.CS_ERES_INT_PKG dependencies on JTF_RS_RESOURCE_EXTNS
12.1.1
-
APPS.CS_ERES_INT_PKG dependencies on JTF_RS_RESOURCE_EXTNS
12.2.2
-
APPS.CS_ERES_INT_PKG dependencies on CS_INCIDENTS_ALL_TL
12.2.2
-
PACKAGE BODY: APPS.CS_ERES_INT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_ERES_INT_PKG, status:VALID,
-
APPS.CS_ERES_INT_PKG dependencies on CS_INCIDENT_STATUSES_TL
12.2.2