I have a simple example I am working on and have built a decision table that takes an input of a cost center and outputs to a resultList (called cca) two values of “owner” and “limit”. The output is [{owner=Bob, limit=5000}].
I am trying to use owner to set the assignee. I think it should be an expression like ${cca.owner}, but it is not working. I also tried ${cca[0]} and ${cca[owner]}, but that doesn’t work either.
Any assistance or pointers is appreciated.