Operation Details
Description: Returns a count of any slot allocations that exist on a slot with a number of work units greater than zero
Sterotype: ns
SQL
SELECT
  COUNT (*)
INTO
  :numberOfRecords 
FROM
  SlotAllocation 
WHERE SlotAllocation.slotID = :slotID 
  AND SlotAllocation.slotAllocationDate >= :slotAllocationDate 
  AND SlotAllocation.numberWorkUnits > 0