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
Rick_93Rick_93 

Account History Related List

Hi all,
I've a Visualforce Page for the Account entity.
I want to display the Account History Field Tracking using a simple related list.

I'm using the follow related list:
<apex:relatedlist list="AccountHistories" title="Account History" />
but I receive the error : AccountHistories is not a valid child relationship name for entity Account
 
While using the same logic for the Activity History, It's working fine.
<apex:relatedlist list="ActivityHistories" title="Activity History" />
Can anyone help me ?

Thanks in advance :)