Skip to Content
0
Former Member
Dec 04, 2008 at 05:38 PM

***UDF not working under the Test Tab

23 Views

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