Search Results set_published_status
Overview
CS_KB_LINKED_SOLUTIONS_VIEW is an Oracle E-Business Suite (EBS) reporting view owned by the APPS schema and defined within the Service (CS) product family, specifically the Knowledge Base (KB) module. It exposes the relationships between Knowledge Base solution "sets" and the objects to which they are linked, filtered by the current user's security context. In EBS 12.1.1 and 12.2.2, this view serves as the principal read-only interface for retrieving linked-solution data without requiring direct navigation of the underlying intersection tables.
The view is not a base table; it is a join-based projection that consolidates metadata from solution set definitions, link definitions, lookup codes, set types, and visibility records. Its primary functional purpose is to return only those linked solutions that the querying user is permitted to see, based on visibility position thresholds and category-group assignments resolved at runtime through the CS_KB_SECURITY_PVT package.
Underlying Base Objects
The view is defined over the following documented objects:
- CS_KB_SETS_VL — the solution set view supplying set number, set ID, name, visibility ID, status, set type ID, and the VIEWABLE_VERSION_FLAG filter.
- CS_KB_SET_LINKS — the link intersection storing LINK_TYPE, OBJECT_CODE, OTHER_ID, and LAST_UPDATE_DATE.
- CS_LOOKUPS — joined via an outer join on LOOKUP_TYPE = 'CS_KB_LINK_TYPE' to translate LINK_TYPE into a readable meaning.
- CS_KB_SET_TYPES_VL — supplies the set type name.
- CS_KB_VISIBILITIES_VL — supplies the visibility name and the POSITION value used for security filtering.
- CS_KB_SET_CATEGORIES and CS_KB_CAT_GROUP_DENORM — used within an EXISTS subquery to constrain results to categories the user may access.
- CS_KB_SECURITY_PVT — a package whose functions GET_SOLN_VISIBILITY_POSITION and GET_CATEGORY_GROUP_ID supply the runtime security thresholds.
- FND_GLOBAL — referenced for session context (user and responsibility), used indirectly by the security package.
Key Columns
- SET_NUMBER — user-facing identifier of the solution set.
- SET_ID — internal primary key of the set.
- SET_NAME — descriptive name of the set.
- SET_VISIBILITY_ID / VISIBILITY_NAME — visibility classification and its display label.
- SET_LINK_TYPE / SET_LINK_TYPE_MEANING — the coded link type and its lookup-derived meaning.
- SET_PUBLISHED_STATUS — decode of STATUS, returning 'PUB' or 'NONPUB'.
- SET_LAST_UPDATE_DATE — timestamp of the last link update.
- OBJECT_CODE / OTHER_ID — identify the linked target object.
- SET_TYPE_NAME — classification of the set type.
Common Use Cases and Queries
Typical scenarios include auditing which solutions are linked to specific objects, reporting published versus non-published linked solutions, and building security-aware dashboards that respect category-group visibility.
SELECT set_number, set_name, set_link_type_meaning,
object_code, other_id, set_published_status
FROM apps.cs_kb_linked_solutions_view
WHERE set_published_status = 'PUB'
AND set_link_type = 'SOLN'
ORDER BY set_last_update_date DESC;
For object-centric lookups, filter on OBJECT_CODE and OTHER_ID. Because visibility and category filtering are applied internally, callers should not attempt to replicate security logic in outer queries; results returned by the view are already scoped to the current FND_GLOBAL session. Note that the view is a read-only reporting construct and should not be used as the basis for DML operations.
-
View: CS_KB_LINKED_SOLUTIONS_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_KB_LINKED_SOLUTIONS_VIEW, object_name:CS_KB_LINKED_SOLUTIONS_VIEW, status:VALID, product: CS - Service , description: Linked Solutions View , implementation_dba_data: APPS.CS_KB_LINKED_SOLUTIONS_VIEW ,
-
View: CS_SR_KB_SOLUTION_LINKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_KB_SOLUTION_LINKS_V, object_name:CS_SR_KB_SOLUTION_LINKS_V, status:VALID, product: CS - Service , description: This is the base view in the notes section of the workbench tab for Knowledge Base solution notes. , implementation_dba_data: APPS.CS_SR_KB_SOLUTION_LINKS_V ,
-
View: CS_KB_LINKED_SOLUTIONS_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_KB_LINKED_SOLUTIONS_VIEW, object_name:CS_KB_LINKED_SOLUTIONS_VIEW, status:VALID, product: CS - Service , description: Linked Solutions View , implementation_dba_data: APPS.CS_KB_LINKED_SOLUTIONS_VIEW ,
-
View: CS_SR_KB_SOLUTION_LINKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_KB_SOLUTION_LINKS_V, object_name:CS_SR_KB_SOLUTION_LINKS_V, status:VALID, product: CS - Service , description: This is the base view in the notes section of the workbench tab for Knowledge Base solution notes. , implementation_dba_data: APPS.CS_SR_KB_SOLUTION_LINKS_V ,