Operation Details
Description: Operation to retrieve all rows from the Information Provider entity that match the specified methodOfPmtCode and where the nextPaymentDate is <= the input date.
Sterotype: nsmulti
SQL
SELECT
  InformationProvider.concernRoleID,
  InformationProvider.name,
  InformationProvider.typeCode,
  InformationProvider.confidentialityInd,
  InformationProvider.statusCode,
  InformationProvider.comments,
  InformationProvider.primaryAlternateID,
  InformationProvider.paymentFrequency,
  InformationProvider.nextPaymentDate,
  InformationProvider.currencyType,
  InformationProvider.methodOfPmtCode,
  InformationProvider.versionNo
INTO
  :concernRoleID,
  :name,
  :typeCode,
  :confidentialityInd,
  :statusCode,
  :comments,
  :primaryAlternateID,
  :paymentFrequency,
  :nextPaymentDate,
  :currencyType,
  :methodOfPmtCode,
  :versionNo 
FROM
  InformationProvider 
WHERE InformationProvider.methodOfPmtCode = :methodOfPmtCode 
  AND InformationProvider.nextPaymentDate <= :nextPaymentDate