You need to sign in to do that
Don't have an account?
sai.sf
How to display Contact history Related List in Visual force page?
Hi all,
I want to display Contact History as a related list in Visual force page. I am trying below syntax
<apex:page standardController="Contact">
<apex:relatedList list="Histories"/>
</apex:page>
But it is giving error as 'Histories' is not a valid child relationship name for entity Contact'
Please let me know the correct syntax of API name for Contact history to display it as a related list.
Thanks
History related list is a special one, and requires you to build your own table, similar to:
Here's a discussion for the same problem