I have 3 entities with this relationship schema ( -> is ONE TO MANY): A -> B -> C A is the main entity of the Process. In a certain moment in the process I need to show all records in C in a Table to allow approval, but it does not allow. I tryied to use another relationship from A to C and tried a script to attach all records to it, using something like this: Me.attachCollectionItems( "A.Relation_to_C", <A.Relation_to_B.Relation_To_C> ); It does not work. I tryied other things that did not work eather. How can I solve that?
↧