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