Map variable member value to Call Activity variable

Hi,

I would like to know if it is possible to map the value of a process variable member to an own variabe in a call activity. For example

A “person” variable holds a person object with a name (getName()) and age (getAge()). Ist ist possible to map this variable to a call activity this way

person.getName() -> "name" variable in the call activity
person.getAge()  -> "age" variable in the call activity

I tried several expression syntaxes (${person.getName()}, …) for the source expression but had no luck.

Help would be great!

Thanks and kind regards
Franz

Finally found out how to do it:

Call Activity -> Variabes -> In Mapping

Type             : Source Expression
Source Expression: ${execution.getVariable("person").getName()}
Target           : name
2 Likes