DirOrganizationalRole.fetchAssignedParticipants()

Retrieves a list with all the Participants assigned to the Organizational Role. For example: // Returns the list of DirHumanParticipants assigned to the Role parts = fetchAssignedParticipants(dirOrgRole1) i= 0 for each p in parts do lines[i] = [p.displayName,p.id] i = i +1 end // This method does not work in debug mode.