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