Versions Compared

Key

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

...

Code Block
<validationRule>
				<inputMissingPercentage>100</inputMissingPercentage>
	<outputValueFlag>missing</outputValueFlag>
</validationRule>

The third output value is set to doubtful. The input doesn't contain missing values but has a single doubtful input value. The percentage of doubtful values in the input is therefore 25% which means that the following rule will be applied.

Code Block

<validationRule>
<inputDoubtfulPercentage>30</inputDoubtfulPercentage>
<inputMissingPercentage>0</inputMissingPercentage>
<outputValueFlag>doubtful</outputValueFlag>
<outputCustomFlagSourceId>D1</outputCustomFlagSourceId>
</validationRule>
Configuration example

...