Operation Details
Description: Retrieves the details of the attendees for the specified recurrence ID.
Sterotype: nsmulti
SQL
SELECT
  attendeeID,
  activityID,
  userName,
  concernRoleID,
  attendeeName,
  acceptedInd,
  recordStatusCode
INTO
  :attendeeID,
  :activityID,
  :userName,
  :concernRoleID,
  :attendeeName,
  :acceptedInd,
  :recordStatusCode 
FROM
  ActivityAttendee 
WHERE activityID IN 
  ( 
  SELECT
    activityID 
  FROM
    Activity 
  WHERE recurrenceID = :recurrenceID 
  )