Re: View from multiple levels of entities
Hi @AndKanPA,
This helps some of the confusion - your original statement of "Entity01 has 1:n relationship to Entity02, and Entity02 again 1:n to Entity03" should be "Entity1 has a N:1 relationship to Entity2, Entity2 has a N:1 relationship to Entity3" - 1:N indicates 1 computer has many (N) vendors.
You are typically able to reference a related record's data via a Quick View form, but you won't be able to use a Quick View inside of a Quick View. If what you gave as an example is the sole requirement, it's an easy solve:
My Setup:
- Entity A (Entity01) has a Lookup to Entity B (Entity02) named "Entity B Ref"
- Entity B (Entity02) has a Lookup to Entity C (Entity03) named "Entity C Ref"
- A Quick View Form, named "Entity C Data", is created for Entity B (Entity02) includes the Lookup to Entity C (Entity03)
- The Portal Form includes the Quick View Form mentioned in the above step
- A View was created to show Entity A (Entity01) data with the following columns: Name, Entity B Ref, Entity C Ref (via Entity B Ref relationship)
Create a Quick View Form (Forms) on your Entity2

Include the Lookup field of Entity3 in the Quick View Form
Add the Quick View Form to the Portal Form of Entity1

Voila

Additionally, a view of all 3 being used in lists of Entity1 records

If you need to show data that is not the record name of Entity 3, we will have to consider custom approaches.
I hope this helps,
Justin