Search Results csc_sr_kb_note_links_v
Overview
CSC_SR_KB_NOTE_LINKS_V is a VALID view owned by the APPS schema within the CSC – Customer Care product family in Oracle E-Business Suite 12.1.1 and 12.2.2. The view combines JTF notes with knowledge management element links and set links, and is used by Oracle Support for integration from Service Requests to Knowledge Management. Practically, it functions as a unified record set that normalizes two distinct sources of service-related content — free-form notes captured through the JTF note framework and structured knowledge base element links — into a single, queryable shape. This normalization is what allows downstream Service Request processing to treat notes and KB links interchangeably when rendering or exporting knowledge content.
Underlying Base Objects
Documented view metadata for 12.2.2 lists the following referenced base objects: FND_GLOBAL (PACKAGE), JTF_COMMON_PVT (PACKAGE), JTF_NOTES_PKG (PACKAGE), JTF_NOTES_VL (VIEW), JTF_NOTE_CONTEXTS (SYNONYM), and DBMS_LOB (SYNONYM). These underpin note handling, locale (NLS) resolution, multi-language note text, and large-object access. The view text reveals a UNION ALL over three branches:
- JTF_NOTES_B joined to JTF_NOTES_TL (for the current language), with FND_LOOKUPS providing note type and note status meanings. This branch stamps RECORD_SOURCE_TYPE as 'JTF_NOTE'.
- CS_KB_ELEMENT_LINKS joined to CS_KB_ELEMENTS_B, CS_KB_ELEMENTS_TL, and CS_KB_ELE_TYPE_LINKS, again resolved through FND_LOOKUPS. This branch stamps RECORD_SOURCE_TYPE as 'KB_ELEM'.
- A third branch originating from KB sets (CS_KB_SETS), representing set-level links.
Because both branches expose the same column list, the FND_LOOKUPS-driven JTF_NOTE_TYPE and JTF_NOTE_STATUS meanings are reused to describe knowledge element types, keeping the output consistent across source systems.
Key Columns
The most significant column in the user's search context is APP_OBJ_CODE. In the note branch it is sourced from NOTE.SOURCE_OBJECT_CODE, while in the element branch it is populated from ELEM_LINK.OBJECT_CODE. It identifies the application object type (for example, a Service Request or another TCA/JTF entity) that the note or KB link is associated with, and is essential for filtering records to a specific business object. APP_OBJ_ID carries the corresponding SOURCE_OBJECT_ID or OTHER_ID, providing the object instance key. Additional notable columns include ID (JTF_NOTE_ID or ELEMENT_ID or SET_ID), NOTE_TYPE_CODE and NOTE_TYPE_MEANING, NOTE (the note or element name), NOTE_STATUS and NOTE_STATUS_MEANING, RECORD_SOURCE_TYPE ('JTF_NOTE' or 'KB_ELEM'), and CREATED_BY / CREATION_DATE / LAST_UPDATE_DATE audit columns. TRUE_STMT is a literal 'T' flag used to mark note records, while SOLUTION_ID, OUTCOME, and SOLUTION_NUMBER are deliberately NULL placeholders reserved for downstream solution enrichment.
Common Use Cases and Queries
Typical consumption paths include Service Request note listings, knowledge integration feeds, and reporting on the mix of notes versus KB-linked content per object. A representative query filters by application object code and joins back to the SR header:
SELECT id, app_obj_id, app_obj_code, note_type_code, note_type_meaning, note, record_source_type FROM csc_sr_kb_note_links_v WHERE app_obj_code = 'SR';- Segregate sources:
SELECT record_source_type, COUNT(*) FROM csc_sr_kb_note_links_v GROUP BY record_source_type; - Retrieve KB element links only:
SELECT id, app_obj_id, note FROM csc_sr_kb_note_links_v WHERE record_source_type = 'KB_ELEM';
Because language resolution depends on USERENV('LANG'), queries should be run in the session language expected by the requesting user to guarantee the correct _TL row is returned.
-
View: CSC_SR_KB_NOTE_LINKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_SR_KB_NOTE_LINKS_V, object_name:CSC_SR_KB_NOTE_LINKS_V, status:VALID, product: CSC - Customer Care , description: This view combines JTF notes with knowledge management element links and set links. Used by Oracle Support for integration from Service Requests to Knowledge Management. , implementation_dba_data: APPS.CSC_SR_KB_NOTE_LINKS_V ,
-
View: CSC_SR_KB_NOTE_LINKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_SR_KB_NOTE_LINKS_V, object_name:CSC_SR_KB_NOTE_LINKS_V, status:VALID, product: CSC - Customer Care , description: This view combines JTF notes with knowledge management element links and set links. Used by Oracle Support for integration from Service Requests to Knowledge Management. , implementation_dba_data: APPS.CSC_SR_KB_NOTE_LINKS_V ,
-
PACKAGE: APPS.JTF_NOTES_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:JTF_NOTES_PKG, status:VALID,
-
PACKAGE: APPS.JTF_COMMON_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:JTF_COMMON_PVT, status:VALID,
-
PACKAGE: APPS.JTF_COMMON_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:JTF_COMMON_PVT, status:VALID,
-
PACKAGE: APPS.JTF_NOTES_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:JTF_NOTES_PKG, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.JTF_NOTE_CONTEXTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_NOTE_CONTEXTS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.JTF_NOTES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_NOTES_VL, object_name:JTF_NOTES_VL, status:VALID,
-
VIEW: APPS.JTF_NOTES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_NOTES_VL, object_name:JTF_NOTES_VL, status:VALID,
-
VIEW: APPS.CSC_SR_KB_NOTE_LINKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_SR_KB_NOTE_LINKS_V, object_name:CSC_SR_KB_NOTE_LINKS_V, status:VALID,
-
VIEW: APPS.CSC_SR_KB_NOTE_LINKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_SR_KB_NOTE_LINKS_V, object_name:CSC_SR_KB_NOTE_LINKS_V, status:VALID,
-
SYNONYM: PUBLIC.DBMS_LOB
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:DBMS_LOB, status:VALID,
-
SYNONYM: PUBLIC.DBMS_LOB
12.2.2
owner:PUBLIC, object_type:SYNONYM, object_name:DBMS_LOB, status:VALID,
-
eTRM - CSC Tables and Views
12.1.1
description: Translation table to Store Drilldown details for a profile variable. This stores the column and table names for the drilldown form. Also stores the object_code, which provides the form_function to drilldown ,
-
eTRM - CSC Tables and Views
12.2.2
description: Translation table to Store Drilldown details for a profile variable. This stores the column and table names for the drilldown form. Also stores the object_code, which provides the form_function to drilldown ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.FND_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - CSC Tables and Views
12.2.2
description: Translation table to Store Drilldown details for a profile variable. This stores the column and table names for the drilldown form. Also stores the object_code, which provides the form_function to drilldown ,
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - CSC Tables and Views
12.1.1
description: Translation table to Store Drilldown details for a profile variable. This stores the column and table names for the drilldown form. Also stores the object_code, which provides the form_function to drilldown ,
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,