You need to sign in to do that
Don't have an account?
shachna
How do I get the History for a Custom Object on to a Cutom VF page?
I created a tabbed VF page for a custom object to replace the standard layout that we had. I used this piece of code to call all the related lists I needed.
<apex:tab label="History" name="History" id="tabHistory">
<apex:relatedList subject="{!Clients__c}" list="OpenActivities"/>
</apex:tab>
The trouble I'm having is I don't know (nor ca I guess) the correct name for the standard History Object that appears in every page. Can anyone tell me what I should be putting in the list part of the code?
Thanks in advance.
This information can be located in your enterpise WSDL file.
The history object will be different for each object. As an example, this is the section for leads from an enterpise WSDL file:
All Answers
This information can be located in your enterpise WSDL file.
The history object will be different for each object. As an example, this is the section for leads from an enterpise WSDL file:
What is my enterpise WSDL file and where do I find it?
WSDL = Web Service Definition Language
This is an XML file that describes your system. The enterprise one is strongly typed while the partner one is more generic.
Here is a link on generating the WSDL.
You may find this thread useful as well.
Thanks
Here is another person's blog post that might help too.