Hi Sandip,
Thanks for your help. Can you please help me here as I am doing this for first time.
I have declared Hashmap in attributes and methods.
Where do I do this populate hashmap
// populate hash map
newmap.put(1,"tutorials");
newmap.put(2,"point");
In UDF I have written like this..is this corrrect way as per your suggesstion to populate..
for(int i=0;i<length;i++);
{
map.put(source[i],target[i]);
}
result.addValue("");
Please let me know;