Hi all,
my criteria is like this,Do not send the records <> 'O' or <> '0' or <> ' '.
Find my UDF.
if (!inValue[0].equals("") || !inValue[0].equals("O") || !inValue[0].equals("0") ) {
result.addValue(inValue[0]);
}else{
result.addValue(" ");
}
When I am trying to test the same under the test tab of interfacemapping,It does not restrict the records.
that is if my criteria is O it is sending 0 o,""to the target field.
Thanks,
Srinivas