0
votes

I have made some changes to the existing map and tried to test the map. The Changes I made is adding a scripting fuctoid with the following code

public string Code(string recode, string amount)
{
double k = Convert.ToDouble(amount);
if(k>0)
{
return " ";
}
else return recode;
}

also added the logical functoid and value mapping in another field like enter image description here

When I clicked the Test Map option, I am getting an error message like this

enter image description here

I am not sure what is going wrong. Can anybody help me with this.

Thanks

1
need to see the code - DJ Burb

1 Answers

0
votes

There was no error in the code or functoids. The assembly file version was set a 1.1.* . When I changed it and did test map option,it worked.