Operation Details
Description: Retrieves the details of a Case participant role note.
Sterotype: ns
SQL
SELECT
  CaseParticipantRoleNote.caseParticipantRoleNoteID,
  CaseParticipantRoleNote.caseParticipantRoleID,
  CaseParticipantRoleNote.recordStatus,
  Note.sensitivityCode,
  Note.notesText,
  Note.subjectText,
  Note.userName,
  Note.creationDateTime,
  Note.priorityCode,
  Users.fullName,
  CaseParticipantRoleNote.noteID,
  CaseParticipantRoleNote.versionNo
INTO
  :caseParticipantRoleNoteID,
  :caseParticipantRoleID,
  :recordStatus,
  :sensitivityCode,
  :notesText,
  :subjectText,
  :userName,
  :creationDateTime,
  :priorityCode,
  :fullname,
  :noteID,
  :versionNo 
FROM
  Note,
  CaseParticipantRoleNote,
  Users 
WHERE CaseParticipantRoleNote.caseParticipantRoleNoteID = :caseParticipantRoleNoteID 
  AND Note.noteID = CaseParticipantRoleNote.noteID 
  AND Note.userName = Users.userName