Operation Details
Description: Method to return a list of exclusion dates in descending order.
Sterotype: nsmulti
SQL
SELECT
  financialCalendarID,
  exclusionDate,
  deliveryMethodType,
  prePaymentInd
INTO
  :financialCalendarID,
  :exclusionDate,
  :deliveryMethodType,
  :prePaymentInd 
FROM
  FinancialCalendar 
WHERE deliveryMethodType = :deliveryMethodType 
  AND exclusionDate >= :dateFrom 
  AND exclusionDate <= :dateTo 
ORDER BY exclusionDate ASC