Settlement window configuration task

This task uses the configured processing windows to assign the settlement window. The task uses the RULES.STTL_WINDOW_CONFIG_V database view.

Task descriptor

The task descriptor for this task is shown in the following example:
<?xml version="1.0"?>
<taskDescriptor name="SttlWindowConfigTask" type="TABLE">
   <assignments>
      <assignment field="ibmTodayIsBday"       type="IsBusDate" value="ibmFileDateReceivedOPT"        executionPoint="onEntry"/>
      <assignment field="ibmAdjacentDayIsBday" type="IsBusDate" value="ibmFileDateReceivedOPT, , '1'" executionPoint="onEntry"/>
      <assignment field="refHHMM"              type="field"     value="refHHMMGlobalSttl"             conditions="refHHMMGlobalSttl IS currentAndNotEmpty"/>
      <assignment field="refHHMMGlobalSttl"    type="field"     value="ibmNextHHMM"                   executionPoint="onExit"/>
      <assignment field="refIsLastWindowSttl"  type="string"    value="Y"                             executionPoint="onExit" results="FAILURE"/>
   </assignments>
   <dataName>SttlWindowConfigTable</dataName>
</taskDescriptor>

Data descriptor

The data descriptor for this task is shown in the following example:
<?xml version="1.0"?>
<dataDescriptor name="SttlWindowConfigTable" type="TABLE">
   <viewName>Sttl_Window_Config_V</viewName>
   <fileName>SttlWindowConfigTable.tbl</fileName>
   <record>
      <field datatype="char" length="10" name="ibmNprBdCategory"               type="key"/>
      <field datatype="char" length="1"  name="ibmTodayIsBday"                 type="key"/>
      <field datatype="char" length="1"  name="ibmAdjacentDayIsBday"           type="key"/>
      <field datatype="char" length="4"  name="refHHMM"                        type="cutoffKey"/>
      <field datatype="char" length="24" name="ibmCutoffDay"                   type="payload"/>
      <field datatype="char" length="1"  name="ibmIsNextWindowTomorrow"        type="payload"/>
      <field datatype="char" length="4"  name="ibmNextHHMM"                    type="payload"/>
      <field datatype="byte" length="4"  name="ibmNprSettlementWindowId"       type="payload"/>
      <field datatype="char" length="60" name="refSettlementWindowName"        type="payload"/>
   </record>
</dataDescriptor>