Tasks and events that start Duplicate Detect

To automatically send transactions to Duplicate Detect after they have been repaired by a Payment Repair operator or reviewed by an Suspect Image Review operator, add the following event to the Scheduler.xml file:
<EVENT>
   <NAME>Dup Detect - Payment Exception Change</NAME>
   <TYPE>PaymentExceptionChange</TYPE>
   <EXEC>
      com.ibm.icpcs.transactionserver.event.DupDetectHandler
   </EXEC>
</EVENT>
To automatically send transactions to Duplicate Detect when a batch (ICL) and its associated transmission are accepted and have been completely:
  • loaded
  • repaired
  • reviewed
add the following event to the Scheduler.xml file:
<EVENT>
   <NAME>Dup Detect - Presentment Repaired and Reviewed</NAME>
   <TYPE>PresentmentStateChange</TYPE>
   <TYPE>PresentmentColumnChange</TYPE>
   <TYPE>PresentmentGroupColumnChange</TYPE>
   <EXEC>
      com.ibm.icpcs.transactionserver.event.DupDetectHandler
   </EXEC>
   <PARAMETER name="presStates1">loaded,reviewed,repaired</PARAMETER>
   <PARAMETER name="group.condition">Accepted</PARAMETER>
   <PARAMETER name="condition">Accepted</PARAMETER>
   <PARAMETER name="destinationID">Duplicate Detect</PARAMETER>
   <PARAMETER name="jmsQmgrHostname">localhost</PARAMETER>
   <PARAMETER name="jmsQmgrChannel">SYSTEM.DEF.SVRCONN</PARAMETER>
   <PARAMETER name="jmsQmgrPort">1414</PARAMETER>
   <PARAMETER name="jmsClient">true</PARAMETER>
   <PARAMETER name="jmsQmgrName">FTM.QMANAGER</PARAMETER>
   <PARAMETER name="jmsSendQueue">FXH.DUPLICATEDETECT.INPUT.QUEUE</PARAMETER>
   <PARAMETER name="jmsReplyQueue">FXH.TRANSSERVER.INPUT.QUEUE</PARAMETER>
</EVENT>
To create a task that runs every 10 minutes and looks for batches (ICLs) to extract to Duplicate Detect, add the following task to the Scheduler.xml file:
<TASK background="yes">
   <NAME>Dup Detect Extraction Task</NAME>
   <INFO>Looks for presentments to be sent to DD.</INFO>
   <EXEC>
      com.ibm.icpcs.transactionserver.scheduler.PresentmentMarkerTask
   </EXEC>
   <PARAMETER name="profileName">default dup profile</PARAMETER>
   <PARAMETER name="workType">DUP</PARAMETER>
   <TIMER type="repeating">
      <INTERVAL>10 MINS</INTERVAL>
      <STARTING>12:00 am</STARTING>
   </TIMER>
</TASK>