Search Results cs_sr_task_notes_v
Overview
CS_SR_TASK_NOTES_V is a standard Oracle E-Business Suite Service (CS) view owned by the APPS schema. It exposes the notes associated with Service Request (SR) tasks, and its documented purpose is to serve as the base view for the notes section of the Workbench tab used for SR task Debrief Notes. In practice, this view presents a flattened, denormalized projection that joins task notes to their parent task, to the owning service request incident, and to the associated lookup and user reference data. It is therefore both a reporting object and the underlying data source for the Service Workbench user interface, where agents review or record debrief notes against individual SR tasks.
Because the view resolves lookup codes into meanings and joins the incident hierarchy, it is well suited for operational reporting, data extracts, and integration interfaces that need note-level detail without reimplementing the multi-table join logic. The view is defined in the APPS schema and is documented as VALID in ETRM 12.2.2, meaning it can be queried directly by custom reports, concurrent programs, and inbound/outbound interfaces in both 12.1.1 and 12.2.2 environments.
Underlying Base Objects
The view is defined over a set of base tables, synonyms, views, and package calls, all resolved within the APPS schema:
- JTF_NOTES_B / JTF_NOTES_TL – the note header and translated note text tables. Notes are joined to their translated content on JTF_NOTE_ID and the session language via USERENV('LANG').
- JTF_TASKS_B – the task table, providing TASK_ID, TASK_NUMBER, and the task-to-SR linkage (SOURCE_OBJECT_ID = INCIDENT_ID, SOURCE_OBJECT_TYPE_CODE = 'SR').
- CS_INCIDENTS_ALL_B – the service request incident header, supplying INCIDENT_ID.
- FND_LOOKUPS – joined twice as outer joins to resolve JTF_NOTE_TYPE and JTF_NOTE_STATUS lookup meanings.
- CS_LOOKUPS – used to derive the SOURCE description from the CS_SR_SOURCE_TYPE lookup for the 'TASK' code.
- FND_USER – joined on CREATED_BY to supply the creating user name.
- FND_GLOBAL / DBMS_LOB – referenced by the view definition (for language context and for evaluating the length of the detail note text respectively).
The note rows are restricted to SOURCE_OBJECT_CODE = 'TASK', so only task-level notes are surfaced.
Key Columns
- INCIDENT_ID – Service request identifier that owns the task.
- ID – the note identifier (JTF_NOTE_ID).
- APP_OBJ_ID / APP_OBJ_CODE – source object identifier and code for the note (the task and 'TASK').
- NOTE_TYPE_CODE / NOTE_TYPE_MEANING – note type code and its lookup meaning.
- NOTE – the translated note text.
- NOTE_STATUS / NOTE_STATUS_MEANING – note status code and meaning from the JTF_NOTE_STATUS lookup.
- OBJ_ID / OBJ_NUMBER – task identifier and task number.
- USER_NAME – the user who created the note.
- SOURCE – concatenation of the CS_SR_SOURCE_TYPE meaning and the task number.
- IS_DETAIL – 'Y' or 'N' flag indicating whether detail note text exists (via DBMS_LOB.GETLENGTH).
- RECORD_SOURCE_TYPE – constant 'JTF_TASK_NOTE' identifying the originating record type.
- Standard audit columns: CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical uses include reporting on debrief notes per task, auditing note activity, and feeding downstream systems with note detail. A simple query retrieving all notes for a given service request follows:
SELECT task_number, note_type_meaning, note, user_name, creation_date
FROM cs_sr_task_notes_v
WHERE incident_id = :p_incident_id
ORDER BY creation_date;
To identify notes that carry extended detail text, filter on the IS_DETAIL flag:
SELECT incident_id, obj_number, note, user_name
FROM cs_sr_task_notes_v
WHERE is_detail = 'Y';
Because FND_LOOKUPS and CS_LOOKUPS are outer-joined, rows remain available even when a note type or status code is not yet defined, which makes the view safe for broad extracts. Note that the translated note text is language-sensitive, so queries executed under a session language without a corresponding JTF_NOTES_TL row will not return that translation.
-
View: CS_SR_TASK_NOTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_TASK_NOTES_V, object_name:CS_SR_TASK_NOTES_V, status:VALID, product: CS - Service , description: This is the base view in the notes section of the workbench tab for SR task Debrief Notes. , implementation_dba_data: APPS.CS_SR_TASK_NOTES_V ,
-
View: CS_SR_TASK_NOTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_TASK_NOTES_V, object_name:CS_SR_TASK_NOTES_V, status:VALID, product: CS - Service , description: This is the base view in the notes section of the workbench tab for SR task Debrief Notes. , implementation_dba_data: APPS.CS_SR_TASK_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 DBA Data
12.2.2
-
12.2.2 FND Design 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_TASK_NOTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_TASK_NOTES_V, object_name:CS_SR_TASK_NOTES_V, status:VALID,
-
VIEW: APPS.CS_SR_TASK_NOTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_TASK_NOTES_V, object_name:CS_SR_TASK_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.JTF_TASKS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_TASKS_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: APPS.JTF_TASKS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_TASKS_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.1.1
description: Table to store web conference details for an SR. ,
-
eTRM - CS Tables and Views
12.2.2
-
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 ,