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
Chidanand Magadum 24Chidanand Magadum 24 

Related List within Related List(In case related list of account, I wanna create 3 more related lists)

Hi folks,

Is it Possible to create related list within another related list? If so, How can v achieve this?
Sagar PareekSagar Pareek
By creating a visualforce page.
Chidanand Magadum 24Chidanand Magadum 24
Could u Plz help me with Some code?
sfdcdevsfdcdev
<apex:page standardController="Account">
    <apex:detail relatedList="false" relatedListHover="false"/>
    <apex:relatedList list="Contacts"/>
    <apex:relatedList list="Opportunities"/>
    <apex:relatedList list="Cases"/>
    <apex:relatedList list="OpenActivities"/>
</apex:page>

For this example to render properly, you must associate the Visualforce page with a valid account record in the URL. For example, if 001D000000IRt53 is the account ID, the resulting URL should be: https://Salesforce_instance/apex/myPage?id=001D000000IRt53