Search Results cs_tp_templates_b
Overview
The CS_TP_TEMPLATES_B table is a core data object within the Oracle E-Business Suite (EBS) Service (CS) module. It functions as the base or master table for storing template definitions. In the context of service management, templates are reusable frameworks that standardize the creation of service requests, tasks, or other service-related entities, ensuring consistency and efficiency. This table holds the fundamental, non-translatable attributes of these templates. Its primary key, TEMPLATE_ID, serves as the unique identifier for every template record and is the central point of reference for numerous related service tables, establishing it as a critical component in the service data model for both EBS 12.1.1 and 12.2.2.
Key Information Stored
While the provided metadata does not list specific columns, the table's role as a base table and its primary key structure indicate its core purpose. The most critical column is the TEMPLATE_ID, a system-generated unique identifier (typically a NUMBER) that defines each template. Based on standard EBS design patterns for base tables, CS_TP_TEMPLATES_B likely contains other essential descriptive and control columns such as TEMPLATE_NAME or TEMPLATE_NUMBER, START_DATE_ACTIVE, END_DATE_ACTIVE, CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, and ENABLED_FLAG. These columns manage the template's lifecycle, audit trail, and active status within the application.
Common Use Cases and Queries
This table is central to operations involving service template management and reporting. Common use cases include auditing all active templates, identifying templates used by specific service requests, and generating master lists of template definitions for administrative purposes. A typical query would join the base table with its corresponding translated description table (CS_TP_TEMPLATES_TL) to retrieve user-friendly names in the session language.
SELECT b.template_id, tl.name, b.start_date_active, b.enabled_flag
FROM cs_tp_templates_b b,
cs_tp_templates_tl tl
WHERE b.template_id = tl.template_id
AND tl.language = USERENV('LANG')
AND b.enabled_flag = 'Y'
AND SYSDATE BETWEEN NVL(b.start_date_active, SYSDATE)
AND NVL(b.end_date_active, SYSDATE);
Related Objects
The CS_TP_TEMPLATES_B table has documented foreign key relationships with several other service tables, as per the provided metadata. These relationships define how template data propagates through the application:
- CS_TP_TEMPLATES_TL: The translated descriptions table. It references CS_TP_TEMPLATES_B.TEMPLATE_ID via CS_TP_TEMPLATES_TL.TEMPLATE_ID to provide language-specific names and descriptions for each template.
- CS_TP_TEMPLATE_ATTRIBUTE: Stores additional, configurable attributes associated with a template. It references the base table via CS_TP_TEMPLATE_ATTRIBUTE.TEMPLATE_ID.
- CS_TP_TEMPLATE_LINKS: Manages hierarchical or associative relationships between different templates. It references the base table via CS_TP_TEMPLATE_LINKS.TEMPLATE_ID.
These relationships confirm that CS_TP_TEMPLATES_B is the authoritative source for template identity, with child tables storing descriptive, attributive, and relational data.
-
Table: CS_TP_TEMPLATES_B
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_TP_TEMPLATES_B, object_name:CS_TP_TEMPLATES_B, status:VALID, product: CS - Service , description: Template Base Table , implementation_dba_data: CS.CS_TP_TEMPLATES_B ,
-
Table: CS_TP_TEMPLATES_B
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_TP_TEMPLATES_B, object_name:CS_TP_TEMPLATES_B, status:VALID, product: CS - Service , description: Template Base Table , implementation_dba_data: CS.CS_TP_TEMPLATES_B ,
-
APPS.CS_TP_TEMPLATES_PKG dependencies on CS_TP_TEMPLATES_B
12.2.2
-
APPS.CS_TP_TEMPLATES_PKG dependencies on CS_TP_TEMPLATES_B
12.1.1
-
APPS.CS_TP_TEMPLATES_PVT dependencies on CS_TP_TEMPLATES_B
12.1.1
-
APPS.CS_TP_TEMPLATES_PVT dependencies on CS_TP_TEMPLATES_B
12.2.2
-
SYNONYM: APPS.CS_TP_TEMPLATES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_TP_TEMPLATES_B, status:VALID,
-
SYNONYM: APPS.CS_TP_TEMPLATES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_TP_TEMPLATES_B, status:VALID,
-
VIEW: CS.CS_TP_TEMPLATES_B#
12.2.2
owner:CS, object_type:VIEW, object_name:CS_TP_TEMPLATES_B#, status:VALID,
-
VIEW: APPS.CS_TP_TEMPLATES_VL
12.1.1
-
VIEW: APPS.CS_TP_TEMPLATES_VL
12.2.2
-
APPS.CS_TP_TEMPLATES_PKG SQL Statements
12.1.1
-
APPS.CS_TP_TEMPLATES_PKG SQL Statements
12.2.2
-
VIEW: CS.CS_TP_TEMPLATES_B#
12.2.2
-
Table: CS_TP_TEMPLATES_TL
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_TP_TEMPLATES_TL, object_name:CS_TP_TEMPLATES_TL, status:VALID, product: CS - Service , description: CS Template Driven SR Template TL table , implementation_dba_data: CS.CS_TP_TEMPLATES_TL ,
-
Table: CS_TP_TEMPLATE_ATTRIBUTE
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_TP_TEMPLATE_ATTRIBUTE, object_name:CS_TP_TEMPLATE_ATTRIBUTE, status:VALID, product: CS - Service , description: This table stores the urgency, severity ... attributes for a template , implementation_dba_data: CS.CS_TP_TEMPLATE_ATTRIBUTE ,
-
TABLE: CS.CS_TP_TEMPLATES_B
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_TP_TEMPLATES_B, object_name:CS_TP_TEMPLATES_B, status:VALID,
-
Table: CS_TP_TEMPLATE_LINKS
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_TP_TEMPLATE_LINKS, object_name:CS_TP_TEMPLATE_LINKS, status:VALID, product: CS - Service , description: Template Driven SR and external objects linking table. This table implements the one to many relationship between a template and external entities. , implementation_dba_data: CS.CS_TP_TEMPLATE_LINKS ,
-
Table: CS_TP_TEMPLATE_LINKS
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_TP_TEMPLATE_LINKS, object_name:CS_TP_TEMPLATE_LINKS, status:VALID, product: CS - Service , description: Template Driven SR and external objects linking table. This table implements the one to many relationship between a template and external entities. , implementation_dba_data: CS.CS_TP_TEMPLATE_LINKS ,
-
TABLE: CS.CS_TP_TEMPLATES_B
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_TP_TEMPLATES_B, object_name:CS_TP_TEMPLATES_B, status:VALID,
-
Table: CS_TP_TEMPLATES_TL
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_TP_TEMPLATES_TL, object_name:CS_TP_TEMPLATES_TL, status:VALID, product: CS - Service , description: CS Template Driven SR Template TL table , implementation_dba_data: CS.CS_TP_TEMPLATES_TL ,
-
PACKAGE BODY: APPS.CS_TP_TEMPLATES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_TP_TEMPLATES_PKG, status:VALID,
-
Table: CS_TP_TEMPLATE_ATTRIBUTE
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_TP_TEMPLATE_ATTRIBUTE, object_name:CS_TP_TEMPLATE_ATTRIBUTE, status:VALID, product: CS - Service , description: This table stores the urgency, severity ... attributes for a template , implementation_dba_data: CS.CS_TP_TEMPLATE_ATTRIBUTE ,
-
View: CS_TP_TEMPLATES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_TP_TEMPLATES_VL, object_name:CS_TP_TEMPLATES_VL, status:VALID, product: CS - Service , implementation_dba_data: APPS.CS_TP_TEMPLATES_VL ,
-
View: CS_TP_TEMPLATES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_TP_TEMPLATES_VL, object_name:CS_TP_TEMPLATES_VL, status:VALID, product: CS - Service , implementation_dba_data: APPS.CS_TP_TEMPLATES_VL ,
-
PACKAGE BODY: APPS.CS_TP_TEMPLATES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_TP_TEMPLATES_PKG, status:VALID,
-
PACKAGE BODY: APPS.CS_TP_TEMPLATES_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_TP_TEMPLATES_PVT, status:VALID,
-
PACKAGE BODY: APPS.CS_TP_TEMPLATES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_TP_TEMPLATES_PVT, status:VALID,
-
PACKAGE BODY: APPS.CS_TP_TEMPLATES_PKG
12.1.1
-
PACKAGE BODY: APPS.CS_TP_TEMPLATES_PKG
12.2.2
-
APPS.CS_TP_TEMPLATES_PKG dependencies on CS_TP_TEMPLATES_TL
12.1.1
-
APPS.CS_TP_TEMPLATES_PKG dependencies on CS_TP_TEMPLATES_TL
12.2.2
-
VIEW: APPS.CS_TP_TEMPLATES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_TP_TEMPLATES_VL, object_name:CS_TP_TEMPLATES_VL, status:VALID,
-
APPS.CS_TP_TEMPLATES_PVT SQL Statements
12.1.1
-
APPS.CS_TP_TEMPLATES_PVT SQL Statements
12.2.2
-
VIEW: APPS.CS_TP_TEMPLATES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_TP_TEMPLATES_VL, object_name:CS_TP_TEMPLATES_VL, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design 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
-
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.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.CS_TP_TEMPLATES_PKG dependencies on FND_API
12.1.1
-
APPS.CS_TP_TEMPLATES_PKG dependencies on FND_API
12.2.2
-
PACKAGE: APPS.CS_TP_TEMPLATES_PVT
12.2.2
-
PACKAGE: APPS.CS_TP_TEMPLATES_PVT
12.1.1