Accessing relations for parameter entities in a MicroFlow

0
Dear low-code friends, any idea how to access to a entity related to a parameter ? on my domain model, i have the following relation : Entity_A(prop_A1, prop_A2)   1--*  Entity_B(prop_B1) with the relation named Entity_A_Entity_B on my Microflow, i have Entity_A as parameter named $entity_A. so, on the expressions, i can access to $entity_A/prop_A1 and  $entity_A/Entity_A_Entity_B However, i would like to access to Entity_B/prop_B1 using something like  $entity_A/Entity_A_Entity_B /prop_B1 Please help!
asked
2 answers
2

Hi Charif,

You can use the retrieve activity to retrieve your associated object. If the object is directly associated to the object that you want, then you can use retrieve by association. 

 

 

answered
0

your my hero of the day!

Thanks for your help

answered