PrintWhenExpression failed:
($V{Mandantennummer_COUNTER} != null ? $V{Mandantennummer_COUNTER} : new Integer(0)) > ($V{Mandantennummer_COUNT_VALUE_1} != null ? $V{Mandantennummer_COUNT_VALUE_1} : new Integer(1))
Message:
The operator > is undefined for the argument type(s) java.lang.Integer, java.lang.Integer
Declaration:
$F{MandantNo}
integer.valueOf("0")
integer.valueOf("1")
This was a given solution if it not possible to compare directly with Integer.parseInt(1).
The same works in 5.5. Unfortunately I have to use 3.0 in a project.
When was it fixed?
Is there a workaround?
The Goal:
Print a field only if group of Mandantennummer is not unique.
Recommended Comments