Operation Details
Description: This method returns the count of milestone waiver approval checks based on the user name, status, milestone configuration id and the type of milestone.
Sterotype: ns
SQL
SELECT
  COUNT(*)
INTO
  :count 
FROM
  MilestoneWaiverApprovalCheck 
WHERE userName = :userName 
  AND milestoneConfigurationID = :milestoneConfigurationID 
  AND type = :type 
  AND status = :status