c2g.ReminderRulesServiceglobal with sharing class ReminderRulesService The service class used to fetch transaction lines relating to Reminder Rules. Methods
getTransactionLinesForAllRulesglobal static Map<Id, List<c2g__codaTransactionLineItem__c>> getTransactionLinesForAllRules(Id companyId, Date reminderDate) Use this method to retrieve all transaction lines for given company, for a given date. Input Parameters
Return ValueReturns a map of transaction lines by rule id. getTransactionLinesByRuleIdglobal static List<c2g__codaTransactionLineItem__c> getTransactionLinesByRuleId(Id ruleId, Date reminderDate) Use this method to retrieve all transaction lines for given rule, for given date. Input Parameters
Return ValueReturns a list of transaction lines for given rule id for given date;. |