I have a drools decision table created in excel. I have created a function in the headers section
Functions | function boolean checkLimits(Policy policy) {
| ...function body...
| return false;
| }
How do I call this function from the CONDITION cell?
I have tried just checkLimits(policy);, Functions.checkLimits(policy); and this.checkLimits(policy); but I get an error all similar to:
text=Unable to Analyse Expression Functions.checkLimits(policy):
[Error: unable to resolve method using strict-mode: com.chubb.Result.Functions()]
[Near : {... Functions.checkSectionLimits(p ....}]
