Hi,
I am trying this:
In getRecord the code written is:
String a = "false";
for( int i=0; i<var1.length;i++){
if(var1[i].equals("true")){
for(int j=0;j<var2.length;j++){
if(var2[j].equals("true")){
a = "true";
}
}
}
}
what I am trying is that these loops should return me number of true(here 6) so that createif will creat 6 records if it gets true from UDF.
but currently this code is returning me null. why?
Please suggest what is wrong.
Regards,
Sachi