Operation Details
Description: Returns the number of times a specified task is assigned to the specified user. @deprecated Since Curam 6.0. The TaskUserAssignment entity has been deleted. This method has no corresponding replacement. However the same result can be obtained from calling {@link curam.core.sl.entity.intf.TaskAssignment# searchUserAssignmentsWithNamesByTaskID(TaskIDRelatedIDAndTypeKey)} and then checking the size of the list returned. See release note CR00223130.
Sterotype: ns
SQL
SELECT
  COUNT(*)
INTO
  :numberOfRecords 
FROM
  TaskUserAssignment 
WHERE taskID = :taskID 
  AND userName = :userName