How to use attributes from two different entities in the same page

0
I am trying to use attributes from two different entities in the same page. I have an orders details (Has things like pizza toppings) entity and an orders entity (Has an Order_Number (Autonumber) and I need to have a user use a data view on order details and also have the order_number from the orders entity so that I can keep track of both for their order. 
asked
1 answers
2

I guess that your entities are associated. If so, you can add additional nested data containers (dataview, listview, datagrid, templategrid) to your page and show the associated data inside of the new container.

The choice which container to use depends on the type of association as well as on the question how you like to display your data.

If your datastructure is too complex to use retrieve by association or xpath, you can use a datasource microflow for your new container.

answered