Database SQL Operation: ContactLogAttendee.searchActiveConcernRolesByContactLogID
Description: | Method to list active concern roles registered as Contact Log Attendee for specified Contact Log id. |
Sterotype: | nsmulti |
SELECT
ContactLogAttendee.contactLogAttendeeID,
ContactLogAttendee.concernRoleID,
ConcernRole.concernRoleName,
ContactLogAttendee.versionNo
INTO
:contactLogAttendeeID,
:concernRoleID,
:concernRoleName,
:versionNo
FROM
ContactLogAttendee,
ConcernRole
WHERE ContactLogAttendee.contactLogID = :contactLogID
AND ContactLogAttendee.recordStatus = :recordStatus
AND ContactLogAttendee.concernRoleID IS NOT NULL
AND ConcernRole.concernRoleID = ContactLogAttendee.concernRoleID
|