How to perform reverse data selection

0
For example, Entity A has a one-to-many relationship with Entity B, and Entity B has a one-to-many relationship with Entity C, with B pointing to A and C pointing to B. I want to retrieve certain attribute values of B and C on the overview and edit pages of A. How can this be achieved?
asked
1 answers
0

Hi Karblin,

You can use a Data View to show Entity A, then place a List View inside it to display associated Entity B items. Within each B item, use another nested List View to show related Entity C items. However, please note that this nested structure may impact system performance.

Alternatively, you can retrieve Entities A, B, and C using a microflow, associate the data with a helper object, and display it using associations.

answered