Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

When a run is started from the IFD it is by default automatically approved. Only when the configurator defines in the workflow descriptors that the workflow should not be automatically approved the forecast is not automatically approved.

When the config option enableAutoApprove enableAutoApprove is used a and set to true,  an  Approve checkbox will appear on the run options panel. With  With this checkbox the forecaster can determine if the forecast should be approved automically automatically after the run.

The value of the tag enableAutoApprove will determine if the checkbox is initially selected or notinitial  value of the check box is determined by the autoApprove  setting  of the workflowDescriptor.

Note:  the Approve check box will never  appear if  the approving of the forecast is not allowed ( allowApprove=false in workflowDescriptor).  In this case also a  Config.Error is logged.


Code Block
languagexml
<nodes id="exampleGroupNode">
   <workflowId>workflowA</workflowId>
   <enableAutoApprove>true</enableAutoApprove>
   <node id="exampleChildNode">
      <workflowId>workflowB</workflowId>
   </node>
</nodes>

...