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
sdevelopersdeveloper 

Relatedlist Parent - to - Child Account Relationship

Hello, 

 

I am trying to show a related list on my visualforce tabbed Account page, and I want to show a Parent/Child account list.  I want to use the relatedlist code however I can't get it to work.  Does anyone know what it should say?  This is what i have:

 

<apex:tab label="Related Accounts" name="RelatedAccounts" id="tabRel">
  <apex:relatedList subject="{!account}" list="parent"  />
  
</apex:tab>

 

sdevelopersdeveloper

Thank you for the app link, however for what i am trying to accomplish i have to use the APEX coding

Marko LamotMarko Lamot

you will have to implement your own related list using apex class extensions where you will quurey for child accounts.

sdevelopersdeveloper

All other relationships have related lists though, are you sure there is no lookup code?