FTM business day workflow using processing windows
This workflow assigns business dates to the incoming work using the processing windows that have been configured.
The following nodes make up the FtmBusinessDayWorkflow. They are each executed in turn, which means that
there is no branching around any of the nodes.
- BankAssignmentFtmNode
- DepositProductLookupFtmNode
- BusinessDayCategoryFtmNode
- BusinessDayBatchNode
- AcknowledgmentEndpointsNode
Workflow descriptor
<?xml version="1.0"?>
<workflowDescriptor name="FtmBusinessDayWorkflow">
<nodes>
<node name="BankAssignmentFtmNode"/>
<node name="DepositProductLookupFtmNode"/>
<node name="BusinessDayCategoryFtmNode"/>
<node name="BusinessDayBatchNode"/>
<node name="AcknowledgmentEndpointsNode"/>
</nodes>
<connections>
<connection srcName="BankAssignmentFtmNode" dstName="DepositProductLookupFtmNode"/>
<connection srcName="DepositProductLookupFtmNode" dstName="BusinessDayCategoryFtmNode"/>
<connection srcName="BusinessDayCategoryFtmNode" dstName="BusinessDayBatchNode"/>
<connection srcName="BusinessDayBatchNode" dstName="AcknowledgmentEndpointsNode"/>
</connections>
<responses>
<response>
<responseFields>
<responseField name="ibmValDepositPriority" message="decision"/>
</responseFields>
</response>
</responses>
</workflowDescriptor>
Note: The ibmValDepositPriority data field is set up to be returned to the Gateway on every decision message. For details on returning information this way, see Workflow
Responses.