Search Results cs_kb_set_categories
Overview
The CS_KB_SET_CATEGORIES table is a core data structure within the Oracle E-Business Suite (EBS) Service (CS) module, specifically for the Knowledge Base (KB) functionality. As its description indicates, it is a linking table, also known as a junction or association table. Its primary role is to manage the many-to-many relationship between Knowledge Base Solution Sets (CS_KB_SETS_B) and Solution Categories (CS_KB_SOLN_CATEGORIES_B). This design allows a single solution set to be classified under multiple categories and, conversely, a single category to contain numerous solution sets. This structure is fundamental for organizing, filtering, and navigating the knowledge repository, enabling efficient search and retrieval of solutions based on categorical hierarchies.
Key Information Stored
The table's structure is intentionally simple, consisting of the two foreign key columns that form its composite primary key. The SET_ID column stores the unique identifier for a Knowledge Base Solution Set, which represents a documented solution or article. The CATEGORY_ID column stores the unique identifier for a defined Solution Category within the classification hierarchy. The combination of these two columns forms a unique record, explicitly defining the categorical assignment of a solution. There are no other descriptive columns; all contextual data resides in the parent tables this object references.
Common Use Cases and Queries
The primary use case is to query which categories are assigned to a solution or to find all solutions within a specific category for reporting, portal display, or administrative maintenance. A common administrative task involves inserting or deleting records in this table to manage a solution's categorical affiliations. Sample SQL patterns include retrieving all categories for a given solution set or listing all solutions within a category branch. For example, to find all solution sets categorized under a specific category ID, a typical query would join CS_KB_SET_CATEGORIES to CS_KB_SETS_B.
- Find Solutions by Category:
SELECT s.TITLE FROM cs_kb_sets_b s, cs_kb_set_categories sc WHERE sc.set_id = s.set_id AND sc.category_id = :category_id; - Find Categories for a Solution:
SELECT c.NAME FROM cs_kb_soln_categories_b c, cs_kb_set_categories sc WHERE sc.category_id = c.category_id AND sc.set_id = :set_id;
Related Objects
This table has direct, documented relationships with two key parent tables, as defined by its foreign key constraints. These relationships are critical for maintaining referential integrity and for any meaningful data retrieval.
- CS_KB_SETS_B: The primary table for Knowledge Base Solution Sets. The relationship is defined as CS_KB_SET_CATEGORIES.SET_ID references CS_KB_SETS_B.SET_ID. This links a categorical assignment to a specific solution article.
- CS_KB_SOLN_CATEGORIES_B: The primary table for the Solution Category hierarchy. The relationship is defined as CS_KB_SET_CATEGORIES.CATEGORY_ID references CS_KB_SOLN_CATEGORIES_B.CATEGORY_ID. This links a solution assignment to a specific category node.
The table itself is referenced by its primary key constraint, CS_KB_SET_CATEGORIES_PK, on the (SET_ID, CATEGORY_ID) columns.
-
Table: CS_KB_SET_CATEGORIES
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_KB_SET_CATEGORIES, object_name:CS_KB_SET_CATEGORIES, status:VALID, product: CS - Service , description: Knowledge Base Solution Categories (Linking Table) , implementation_dba_data: CS.CS_KB_SET_CATEGORIES ,
-
Table: CS_KB_SET_CATEGORIES
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_KB_SET_CATEGORIES, object_name:CS_KB_SET_CATEGORIES, status:VALID, product: CS - Service , description: Knowledge Base Solution Categories (Linking Table) , implementation_dba_data: CS.CS_KB_SET_CATEGORIES ,
-
APPS.CS_KB_WF_PKG dependencies on CS_KB_SET_CATEGORIES
12.2.2
-
APPS.CSK_DIAG_SOLUTION_PVT dependencies on CS_KB_SET_CATEGORIES
12.2.2
-
APPS.CS_KB_SOLN_CATEGORIES_PVT dependencies on CS_KB_SET_CATEGORIES
12.1.1
-
APPS.CS_KB_SYNC_INDEX_PKG dependencies on CS_KB_SET_CATEGORIES
12.1.1
-
APPS.CS_KB_SOLUTION_PVT dependencies on CS_KB_SET_CATEGORIES
12.2.2
-
APPS.CS_KB_CTX_PKG dependencies on CS_KB_SET_CATEGORIES
12.2.2
-
APPS.CS_KB_CTX_PKG dependencies on CS_KB_SET_CATEGORIES
12.1.1
-
APPS.CS_KB_SECURITY_PVT dependencies on CS_KB_SET_CATEGORIES
12.1.1
-
APPS.CS_KNOWLEDGE_PVT dependencies on CS_KB_SET_CATEGORIES
12.2.2
-
APPS.CS_KB_ASSOC_PKG dependencies on CS_KB_SET_CATEGORIES
12.2.2
-
APPS.CS_KB_ASSOC_PKG dependencies on CS_KB_SET_CATEGORIES
12.1.1
-
APPS.CSK_DIAG_SOLUTION_PVT dependencies on CS_KB_SET_CATEGORIES
12.1.1
-
APPS.CS_KNOWLEDGE_AUDIT_PVT dependencies on CS_KB_SET_CATEGORIES
12.2.2
-
APPS.CS_KB_SOLN_CATEGORIES_PVT dependencies on CS_KB_SET_CATEGORIES
12.2.2
-
APPS.CSK_SETUP_UTILITY_PKG dependencies on CS_KB_SET_CATEGORIES
12.2.2
-
APPS.CS_KB_SECURITY_PVT dependencies on CS_KB_SET_CATEGORIES
12.2.2
-
APPS.CS_KB_WF_PKG dependencies on CS_KB_SET_CATEGORIES
12.1.1
-
APPS.CS_KB_ELEMENTS_AUDIT_PKG dependencies on CS_KB_SET_CATEGORIES
12.2.2
-
APPS.CS_KB_ELEMENTS_AUDIT_PKG dependencies on CS_KB_SET_CATEGORIES
12.1.1
-
APPS.CS_KNOWLEDGE_AUDIT_PVT dependencies on CS_KB_SET_CATEGORIES
12.1.1
-
APPS.CS_KB_SYNC_INDEX_PKG dependencies on CS_KB_SET_CATEGORIES
12.2.2
-
APPS.CS_KNOWLEDGE_PVT dependencies on CS_KB_SET_CATEGORIES
12.1.1
-
APPS.CSK_SETUP_UTILITY_PKG dependencies on CS_KB_SET_CATEGORIES
12.1.1
-
APPS.CS_KB_SOLUTION_PVT dependencies on CS_KB_SET_CATEGORIES
12.1.1
-
APPS.CS_KB_SYNC_INDEX_PKG dependencies on CS_KB_SOLN_CATEGORIES_B
12.1.1
-
APPS.CS_KB_SYNC_INDEX_PKG dependencies on CS_KB_SOLN_CATEGORIES_B
12.2.2
-
APPS.CS_KNOWLEDGE_AUDIT_PVT dependencies on CS_KB_VISIBILITIES_VL
12.1.1
-
APPS.CS_KB_SOLN_CATEGORIES_PVT dependencies on CS_KB_SETS_B
12.2.2
-
APPS.CS_KB_SOLN_CATEGORIES_PVT dependencies on CS_KB_SETS_B
12.1.1
-
APPS.CS_KNOWLEDGE_AUDIT_PVT dependencies on CS_KB_VISIBILITIES_VL
12.2.2
-
APPS.CS_KB_SYNC_INDEX_PKG dependencies on CS_KB_SET_ELES
12.1.1
-
APPS.CS_KB_ELEMENTS_AUDIT_PKG dependencies on CS_KB_CAT_GROUP_DENORM
12.2.2
-
APPS.CS_KB_SYNC_INDEX_PKG dependencies on CS_KB_SET_ELES
12.2.2
-
APPS.CS_KB_CTX_PKG dependencies on CS_KB_CAT_GROUP_DENORM
12.1.1
-
APPS.CS_KB_CTX_PKG dependencies on CS_KB_CAT_GROUP_DENORM
12.2.2
-
APPS.CS_KB_SYNC_INDEX_PKG SQL Statements
12.1.1
-
APPS.CS_KB_ELEMENTS_AUDIT_PKG dependencies on CS_KB_SETS_B
12.2.2
-
APPS.CS_KB_SYNC_INDEX_PKG SQL Statements
12.2.2
-
APPS.CSK_SETUP_UTILITY_PKG dependencies on CS_KB_SETS_B
12.2.2
-
APPS.CS_KB_CTX_PKG dependencies on CS_KB_SOLN_CATEGORIES_B
12.2.2
-
APPS.CS_KB_ELEMENTS_AUDIT_PKG dependencies on CS_KB_CAT_GROUP_DENORM
12.1.1
-
APPS.CS_KB_ELEMENTS_AUDIT_PKG dependencies on CS_KB_SETS_B
12.1.1
-
APPS.CSK_DIAG_SOLUTION_PVT SQL Statements
12.1.1
-
VIEW: CS.CS_KB_SET_CATEGORIES#
12.2.2
owner:CS, object_type:VIEW, object_name:CS_KB_SET_CATEGORIES#, status:VALID,
-
APPS.CS_KNOWLEDGE_AUDIT_PVT dependencies on CS_KB_SET_TYPES_VL
12.2.2
-
APPS.CSK_DIAG_SOLUTION_PVT SQL Statements
12.2.2
-
APPS.CSK_SETUP_UTILITY_PKG dependencies on CS_KB_SETS_B
12.1.1
-
APPS.CS_KB_SYNC_INDEX_PKG dependencies on CS_KB_ELEMENTS_B
12.1.1