Search Results csc_plan_headers_tl
Overview
The CSC_PLAN_HEADERS_TL table is a core data object within the Oracle E-Business Suite Customer Care (CSC) module. It functions as a translation table, specifically designed to store multilingual versions of the name and description for plan templates. Its primary role is to support the global deployment of the application by enabling the presentation of plan template information in a user's preferred language. The table operates in conjunction with its base table, CSC_PLAN_HEADERS_B, which holds the language-independent, transactional data for plan templates. This separation of language-specific attributes from core business data is a standard Oracle Applications architecture pattern for enabling multilingual capabilities.
Key Information Stored
The table stores translated text attributes for each plan template. While the full column list is not detailed in the provided metadata, the structure of a typical Translation (TL) table and the documented primary key imply the presence of several critical columns. The composite primary key consists of PLAN_ID and LANGUAGE. The PLAN_ID is a foreign key that uniquely identifies the associated plan template record in the CSC_PLAN_HEADERS_B table. The LANGUAGE column holds the language code (e.g., 'US' for American English, 'KO' for Korean) for the translation. Based on the description, the table's main data columns are NAME and DESCRIPTION, which contain the translated text for the plan template's title and descriptive details, respectively. Additional standard TL table columns often include SOURCE_LANG, CREATED_BY, and LAST_UPDATED_BY for tracking data origin and changes.
Common Use Cases and Queries
The primary use case is retrieving plan template information in a specific language for user interfaces, reports, and integrations. A common query pattern joins this table with its base table to fetch a complete, localized view of a plan. For example, to retrieve all plan details in American English, a developer might use:
- SELECT b.plan_id, tl.name, tl.description, b.other_columns
- FROM csc_plan_headers_b b, csc_plan_headers_tl tl
- WHERE b.plan_id = tl.plan_id
- AND tl.language = USERENV('LANG');
Another critical scenario involves data migration or initialization scripts, where translated seed data for plan templates must be populated into this table for each supported language. Reporting on the availability of translations for audit purposes is also a common administrative task.
Related Objects
The CSC_PLAN_HEADERS_TL table has a direct and essential relationship with its base table, as documented in the provided metadata. The key relationship is:
- Foreign Key Reference to CSC_PLAN_HEADERS_B: The PLAN_ID column in CSC_PLAN_HEADERS_TL is a foreign key that references the PLAN_ID in the CSC_PLAN_HEADERS_B table. This enforces referential integrity, ensuring every translation record is linked to a valid base plan template. Any query for localized plan data will typically involve an equi-join on this column.
As a TL table, it is also intrinsically related to the Oracle Applications' multilingual architecture (FND_LANGUAGES), which provides the valid list of language codes. The table's primary key constraint, CSC_PLAN_HEADERS_TL_PK, ensures uniqueness for each combination of language and plan.
-
Table: CSC_PLAN_HEADERS_TL
12.2.2
owner:CSC, object_type:TABLE, fnd_design_data:CSC.CSC_PLAN_HEADERS_TL, object_name:CSC_PLAN_HEADERS_TL, status:VALID, product: CSC - Customer Care , description: CSC_PLAN_HEADERS_TL table stores the translated name, description of the plan templates stored in CSC_PLAN_HEADERS_B table. , implementation_dba_data: CSC.CSC_PLAN_HEADERS_TL ,
-
Table: CSC_PLAN_HEADERS_TL
12.1.1
owner:CSC, object_type:TABLE, fnd_design_data:CSC.CSC_PLAN_HEADERS_TL, object_name:CSC_PLAN_HEADERS_TL, status:VALID, product: CSC - Customer Care , description: CSC_PLAN_HEADERS_TL table stores the translated name, description of the plan templates stored in CSC_PLAN_HEADERS_B table. , implementation_dba_data: CSC.CSC_PLAN_HEADERS_TL ,
-
APPS.CSC_PLAN_HEADERS_B_PKG dependencies on CSC_PLAN_HEADERS_TL
12.1.1
-
APPS.CSC_PLAN_HEADERS_B_PKG dependencies on CSC_PLAN_HEADERS_TL
12.2.2
-
VIEW: CSC.CSC_PLAN_HEADERS_TL#
12.2.2
owner:CSC, object_type:VIEW, object_name:CSC_PLAN_HEADERS_TL#, status:VALID,
-
APPS.CSC_PLAN_HEADERS_B_PKG dependencies on FND_LANGUAGES
12.1.1
-
APPS.CSC_PLAN_HEADERS_B_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.CSC_PLAN_HEADERS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSC_PLAN_HEADERS_TL, status:VALID,
-
APPS.CSC_PLAN_HEADERS_B_PKG dependencies on FND_LANGUAGES
12.2.2
-
APPS.CSC_PLAN_HEADERS_B_PKG SQL Statements
12.2.2
-
SYNONYM: APPS.CSC_PLAN_HEADERS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSC_PLAN_HEADERS_TL, status:VALID,
-
TRIGGER: APPS.CSC_PLAN_HEADERS_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:CSC_PLAN_HEADERS_TL+, status:VALID,
-
TABLE: CSC.CSC_PLAN_HEADERS_TL
12.1.1
owner:CSC, object_type:TABLE, fnd_design_data:CSC.CSC_PLAN_HEADERS_TL, object_name:CSC_PLAN_HEADERS_TL, status:VALID,
-
VIEW: CSC.CSC_PLAN_HEADERS_TL#
12.2.2
-
TRIGGER: APPS.CSC_PLAN_HEADERS_TL+
12.2.2
-
TABLE: CSC.CSC_PLAN_HEADERS_TL
12.2.2
owner:CSC, object_type:TABLE, fnd_design_data:CSC.CSC_PLAN_HEADERS_TL, object_name:CSC_PLAN_HEADERS_TL, status:VALID,
-
VIEW: APPS.CSC_PLAN_HEADERS_VL
12.1.1
-
VIEW: APPS.CSC_PLAN_HEADERS_VL
12.2.2
-
View: CSC_PLAN_HEADERS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_PLAN_HEADERS_VL, object_name:CSC_PLAN_HEADERS_VL, status:VALID, product: CSC - Customer Care , description: This view is the MLSed view based on CSC_PLAN_HEADERS_B and CSC_PLAN_HEADERS_TL used in lock row event of server side API's , implementation_dba_data: APPS.CSC_PLAN_HEADERS_VL ,
-
View: CSC_PLAN_HEADERS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_PLAN_HEADERS_VL, object_name:CSC_PLAN_HEADERS_VL, status:VALID, product: CSC - Customer Care , description: This view is the MLSed view based on CSC_PLAN_HEADERS_B and CSC_PLAN_HEADERS_TL used in lock row event of server side API's , implementation_dba_data: APPS.CSC_PLAN_HEADERS_VL ,
-
PACKAGE BODY: APPS.CSC_PLAN_HEADERS_B_PKG
12.2.2
-
FUNCTION: APPS.CSC_PLAN_HEADERS_TL=
12.2.2
-
FUNCTION: APPS.CSC_PLAN_HEADERS_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:CSC_PLAN_HEADERS_TL=, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.CSC_PLAN_HEADERS_B_PKG
12.1.1
-
VIEW: APPS.CSC_PLAN_HEADERS_V
12.2.2
-
VIEW: APPS.CSC_PLAN_HEADERS_V
12.1.1
-
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 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.CSC_PLAN_HEADERS_B_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSC_PLAN_HEADERS_B_PKG, status:VALID,
-
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
-
APPS.CSC_PLAN_HEADERS_B_PKG dependencies on FND_LOAD_UTIL
12.1.1
-
Table: CSC_PLAN_HEADERS_B
12.2.2
owner:CSC, object_type:TABLE, fnd_design_data:CSC.CSC_PLAN_HEADERS_B, object_name:CSC_PLAN_HEADERS_B, status:VALID, product: CSC - Customer Care , description: CSC_PLAN_HEADERS_B table stores all the plan templates and customized plan templates. , implementation_dba_data: CSC.CSC_PLAN_HEADERS_B ,
-
12.2.2 DBA Data
12.2.2
-
Table: CSC_PLAN_HEADERS_B
12.1.1
owner:CSC, object_type:TABLE, fnd_design_data:CSC.CSC_PLAN_HEADERS_B, object_name:CSC_PLAN_HEADERS_B, status:VALID, product: CSC - Customer Care , description: CSC_PLAN_HEADERS_B table stores all the plan templates and customized plan templates. , implementation_dba_data: CSC.CSC_PLAN_HEADERS_B ,
-
APPS.CSC_PLAN_HEADERS_B_PKG dependencies on FND_LOAD_UTIL
12.2.2
-
PACKAGE BODY: APPS.CSC_PLAN_HEADERS_B_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSC_PLAN_HEADERS_B_PKG, status:VALID,
-
VIEW: APPS.CSC_PLAN_HEADERS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_PLAN_HEADERS_VL, object_name:CSC_PLAN_HEADERS_VL, status:VALID,
-
APPS.CSC_PLAN_HEADERS_B_PKG dependencies on CSC_PLAN_HEADERS_B
12.1.1
-
View: CSC_PLAN_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_PLAN_HEADERS_V, object_name:CSC_PLAN_HEADERS_V, status:VALID, product: CSC - Customer Care , description: This view is based on CSC_PLAN_HEADRES_B & CSC_PLAN_HEADRES_TL used in the client code , implementation_dba_data: APPS.CSC_PLAN_HEADERS_V ,
-
View: CSC_PLAN_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_PLAN_HEADERS_V, object_name:CSC_PLAN_HEADERS_V, status:VALID, product: CSC - Customer Care , description: This view is based on CSC_PLAN_HEADRES_B & CSC_PLAN_HEADRES_TL used in the client code , implementation_dba_data: APPS.CSC_PLAN_HEADERS_V ,
-
VIEW: APPS.CSC_PLAN_HEADERS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_PLAN_HEADERS_VL, object_name:CSC_PLAN_HEADERS_VL, status:VALID,
-
APPS.CSC_PLAN_HEADERS_B_PKG dependencies on CSC_PLAN_HEADERS_B
12.2.2