function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
SKalidhasanSKalidhasan 

Page Layout - Parent -> Child -> Grand Child -> Great Grand Child

Is it possible to display Parent -> Child -> Grand Child -> Great Grand Child Details in Parent Detail Page Layout. Out Of the Box it seems only Parent -> Child be displayed.

 

In case if this feature is not possible OOB without defining direct relationships, Could this design be achieved via Visual Force? If so could Standard controllers be used for CRUD operations?

ibtesamibtesam

You can always override the standard out of box page layout with a visual force page.

Use standard controller + extensions for this new page and add page block sections to query and display child, grand child records.

For over riding standard page, go to buttons and links..click edit for "View" link and choose the new VF page.

sivaextsivaext

Hi

 

 The requirement is possible with visualforce with extension controller.

 

  

  another suggestion:

 

  1. create lookup to parent on every child object and update by manually or use trigger to update.

  2. if first point done , you can display all related list on parent detail page.