Search Results css_def_templates_b
Overview
The CSS_DEF_TEMPLATES_B table is a core data object within the Oracle E-Business Suite (EBS) CSS (Support) module, which is documented as obsolete. This table serves as the master repository for template definitions, providing a structured framework for standardizing and managing support-related processes. Its primary role is to store the fundamental header-level attributes of a template, which can then be associated with detailed rules, conditions, or matrices to automate and govern support activities. The "B" suffix indicates it is the base table in a multi-language support (MLS) architecture, holding language-independent data, while a corresponding "_TL" (translation) table would store translated descriptions. Its status as "Not implemented in this database" in the provided metadata suggests it may have been part of a planned or deprecated feature set in the documented EBS instances (12.1.1 / 12.2.2).
Key Information Stored
While the specific column list is not detailed in the provided excerpt, the table's primary key and relationships define its critical structure. The central column is TEMPLATE_ID, a unique system-generated identifier for each template record. Based on its function as a header table, other likely columns would include a TEMPLATE_NAME or CODE for identification, an ENABLED_FLAG to control active status, CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, and LAST_UPDATED_BY for auditing. It may also contain columns defining the template's type, purpose, or effective date range. The data stored here represents the foundational template entity to which more granular configuration details are linked.
Common Use Cases and Queries
Given the module's context and table relationships, primary use cases involve querying template headers for administration, integration, or data validation. Common SQL patterns would include joining the table to its detail and matrix child tables to retrieve a complete template definition. For instance, an administrator might query all active templates to audit configuration, or a concurrent program might reference template headers to validate input data before processing. A typical reporting query would join CSS_DEF_TEMPLATES_B to CSS_DEF_TEMPL_DETAILS_B to list all rules associated with each template header.
SELECT t.template_id,
t.template_name,
d.detail_id,
d.condition
FROM css_def_templates_b t,
css_def_templ_details_b d
WHERE t.template_id = d.template_id
AND t.enabled_flag = 'Y';
Related Objects
The table maintains defined foreign key relationships with two other support module tables, establishing a clear data hierarchy. The primary key (TEMPLATE_ID) is referenced as a foreign key in the following objects:
- CSS_DEF_TEMPL_DETAILS_B: This table holds the detailed rules or conditions associated with a template. The join column is CSS_DEF_TEMPL_DETAILS_B.TEMPLATE_ID referencing CSS_DEF_TEMPLATES_B.TEMPLATE_ID.
- CSS_DEF_TEMPL_MATRIX: This table stores matrix or grid-based data linked to a template. The join column is CSS_DEF_TEMPL_MATRIX.TEMPLATE_ID referencing CSS_DEF_TEMPLATES_B.TEMPLATE_ID.
This structure positions CSS_DEF_TEMPLATES_B as the parent entity, with child tables providing specific, template-driven configurations for the obsolete Support module.
-
Table: CSS_DEF_TEMPLATES_B
12.1.1
product: CSS - Support (obsolete) , description: Table holds information about templates , implementation_dba_data: Not implemented in this database ,
-
Table: CSS_DEF_TEMPLATES_B
12.2.2
product: CSS - Support (Obsolete) , description: Table holds information about templates , implementation_dba_data: Not implemented in this database ,
-
Table: CSS_DEF_TEMPL_DETAILS_B
12.2.2
product: CSS - Support (Obsolete) , description: This table stored the individual prompts which make up a template. Prompts are specific to one template only. , implementation_dba_data: Not implemented in this database ,
-
View: CSS_DEF_TEMPLATES_VL
12.2.2
product: CSS - Support (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
Table: CSS_DEF_TEMPL_DETAILS_B
12.1.1
product: CSS - Support (obsolete) , description: This table stored the individual prompts which make up a template. Prompts are specific to one template only. , implementation_dba_data: Not implemented in this database ,
-
View: CSS_DEF_TEMPLATES_VL
12.1.1
product: CSS - Support (obsolete) , implementation_dba_data: Not implemented in this database ,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
Table: CSS_DEF_TEMPL_MATRIX
12.1.1
product: CSS - Support (obsolete) , description: This table stores the template mapping for a Problem Category/Problem Type/Item combination. a template can be mapped to any combination of these. All three identifiers are options, however, at least one identifier must be provided. , implementation_dba_data: Not implemented in this database ,
-
Table: CSS_DEF_TEMPL_MATRIX
12.2.2
product: CSS - Support (Obsolete) , description: This table stores the template mapping for a Problem Category/Problem Type/Item combination. a template can be mapped to any combination of these. All three identifiers are options, however, at least one identifier must be provided. , implementation_dba_data: Not implemented in this database ,