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 

How to add Custom vf page as related list in standard object

Hi folks,

Could you plz tell me how to add custom vf page as a related list in standard object?
PrakashbPrakashb
Hi,

You cannot add VF pages as related list within Salesforce.

They can be part of your page layout. You can update the page layout and select the Visual force page options and select the Vf page you want to display on the page.

Regards,
Prakash B
siddarth rajsiddarth raj
Use apex:relatedlist .. for example
 <apex:relatedList list="ProcessSteps" id="ordApprovalHistory"/> 
Thanks
Sid
Sagar PareekSagar Pareek
You will need to create the whole view page as visualforce page.