Search Results cs_sr_notes_v
Overview
CS_SR_NOTES_V is a predefined, VALID view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2, delivered within the Service (CS) product family. As its description states, it is the base view behind the notes section of the Service Request workbench tab, providing a denormalized, reporting-friendly representation of the notes attached to service requests. The view joins the generic JTF notes infrastructure (note body, translated text, and lookup metadata) to the CS incident table and to FND user and lookup data, so that each row yields a complete service-request note record without the consumer needing to reconstruct the underlying joins.
This object is the point of origin for the column NOTE_STATUS_MEANING, which is the attribute most commonly sought by users searching on "note_status_meaning." For each note, the view resolves the internal NOTE_STATUS code against the JTF_NOTE_STATUS lookup type and exposes its human-readable MEANING.
Underlying Base Objects
The view is defined over the following documented objects:
JTF_NOTES_B(synonym) — the base notes table holding the note header, note type, status, source object reference, and audit columns.JTF_NOTES_TL(synonym) — the translated notes table, joined onJTF_NOTE_IDand restricted to the session language viaUSERENV('LANG'), supplying theNOTEStext.CS_INCIDENTS_ALL_B(synonym) — the service request header, joined onINCIDENT_ID = NOTE.SOURCE_OBJECT_IDwhere the note'sSOURCE_OBJECT_CODEis'SR'.FND_USER(synonym) — suppliesUSER_NAMEfor the note creator viaCREATED_BY.FND_LOOKUPS(view) — referenced twice, once forJTF_NOTE_TYPEand once forJTF_NOTE_STATUS, using outer joins so notes with unpopulated type or status codes are still returned.CS_LOOKUPS(view) — supplies theCS_SR_SOURCE_TYPEmeaning used to build theSOURCEconcatenation.DBMS_LOB(synonym) — used viaGETLENGTHto determine whether detailed note text exists.
FND_GLOBAL (package) is also referenced indirectly through the language context used in the translation join.
Key Columns
INCIDENT_ID— service request identifier linking the note to its parent SR.ID— theJTF_NOTE_ID, the note's primary key.NOTE_TYPE_CODE/NOTE_TYPE_MEANING— the note classification code and itsJTF_NOTE_TYPElookup meaning.NOTE_STATUS/NOTE_STATUS_MEANING— the raw status code and its translatedJTF_NOTE_STATUSmeaning, the principal lookup target.NOTE— the localized note text fromJTF_NOTES_TL.IS_DETAIL—'Y'or'N'indicating whether an extended note detail LOB exists.OBJ_ID,OBJ_NUMBER,SOURCE— the service request ID, number, and a formatted source label.USER_NAME— the user who created the note.TRUE_STMT,RECORD_SOURCE_TYPE— static literals ('T','JTF_SR_NOTE') used by the workbench UI.- Standard audit columns:
CREATION_DATE,CREATED_BY,LAST_UPDATE_DATE,LAST_UPDATED_BY,LAST_UPDATE_LOGIN.
Common Use Cases and Queries
The view is typically queried for workbench-style reports, note auditing, and status analysis. A representative query retrieving all notes for a service request, with the status meaning resolved, is:
SELECT id, note_type_meaning, note_status_meaning, note, user_name, creation_date FROM cs_sr_notes_v WHERE incident_id = :p_incident_id ORDER BY creation_date DESC;SELECT incident_id, COUNT(*) FROM cs_sr_notes_v WHERE note_status = :p_status GROUP BY incident_id;
Because all joins other than the translation join are outer or inner to already-validated parent rows, the view returns one row per note per service request, making it suitable for direct use in BI Publisher reports, OAF workbench extensions, and integration extracts where note status and type meanings are required in readable form.
-
View: CS_SR_NOTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_NOTES_V, object_name:CS_SR_NOTES_V, status:VALID, product: CS - Service , description: This is the base view in the notes section of the workbench tab for SR notes. , implementation_dba_data: APPS.CS_SR_NOTES_V ,
-
View: CS_SR_NOTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_NOTES_V, object_name:CS_SR_NOTES_V, status:VALID, product: CS - Service , description: This is the base view in the notes section of the workbench tab for SR notes. , implementation_dba_data: APPS.CS_SR_NOTES_V ,
-
SYNONYM: APPS.JTF_NOTES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_NOTES_TL, status:VALID,
-
SYNONYM: APPS.JTF_NOTES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_NOTES_B, status:VALID,
-
SYNONYM: APPS.JTF_NOTES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_NOTES_TL, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.CS_SR_NOTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_NOTES_V, object_name:CS_SR_NOTES_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.JTF_NOTES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_NOTES_B, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.CS_SR_NOTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_NOTES_V, object_name:CS_SR_NOTES_V, status:VALID,
-
VIEW: APPS.CS_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_LOOKUPS, object_name:CS_LOOKUPS, status:VALID,
-
VIEW: APPS.CS_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_LOOKUPS, object_name:CS_LOOKUPS, status:VALID,
-
SYNONYM: APPS.CS_INCIDENTS_ALL_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENTS_ALL_B, status:VALID,
-
SYNONYM: APPS.CS_INCIDENTS_ALL_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENTS_ALL_B, 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,
-
VIEW: APPS.FND_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_LOOKUPS, object_name:FND_LOOKUPS, status:VALID,
-
VIEW: APPS.FND_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_LOOKUPS, object_name:FND_LOOKUPS, status:VALID,
-
SYNONYM: APPS.FND_USER
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_USER, status:VALID,
-
SYNONYM: APPS.FND_USER
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_USER, status:VALID,
-
eTRM - CS Tables and Views
12.2.2
-
eTRM - CS Tables and Views
12.1.1
description: Table to store web conference details for an SR. ,
-
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,
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - CS Tables and Views
12.1.1
description: Table to store web conference details for an SR. ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
eTRM - CS Tables and Views
12.2.2
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,