Hi Team,
I have a process variable procvar that is of type java.math.BigDecimal.
I have an object O that is of a type OT.
I mapped both to input variables (not sure this is even required).
I have WorkflowProcessInstance pulled in and set an "out" variable using this...
...
$p.setVariable("xxx", true);
retract($process);
end
I have managed to get the O accessible inside the DRL and used in rules.
OT(somefieldinOT == 'sometext')
I have struggled to get procvar visible inside the DRL file.
java.math.BigDecimal (... procvar...
can someone point me at some doco or explain how procvar (or any of the other "basic" process variable types (e.g. Boolean, etc.) is made accessible inside a rule.
Thx
Tony.