[rules-users] Decision tables - multiple params to function over multiple columns

2011-03-28 Thread Travis_Smith
Hi, Currently I've got a consequence on a decision table that works like this: callHelperFunction( $1, $2, $handleFromConditions); where the first two parameters are strings, $1 being a code, $2 a description. which means that you get the table holding things like: "DC X223,Th

Re: [rules-users] Decision tables - multiple params to function over multiple columns

2011-03-29 Thread Wolfgang Laun
I think this is more a Java question of how to call a method in instalments. One option is to set a temporary from the 1st column, and call from the 2nd: The first column might be String code = $param; and the next column would callHelperFunction( code, $param, $handleFromConditions); and the

Re: [rules-users] Decision tables - multiple params to function over multiple columns

2011-03-29 Thread Travis_Smith
by: rules-users-boun...@lists.jboss.org 29/03/2011 08:21 p.m. Please respond to Rules Users List To Rules Users List cc Subject Re: [rules-users] Decision tables - multiple params to function over multiple columns I think this is more a Java question of how to call a method in instalments.