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
Pooja05Pooja05 

Quote Histories Related List not working

<apex:relatedList list="ProcessSteps" subject="{!quote.Id}"/>
<apex:relatedList list="Histories" subject="{!quote.Id}"/>

 

in the above code, Process Steps Related List Shows up correctly but the Histories related list throws an error.

 

'Histories' is not a valid child relationship name for entity Quote

 

However I can see Histories as a child Relationship name in the Salesforce schema.

 

Can you please help?

 

 

Thanks,

Pooja

Cool_DevloperCool_Devloper

Hi Pooja,

 

It is a known issue with certain standard related lists and "Histories" is one of them!!

 

You have to build your own wrapper and use a Repeat/DataTable to display a custom related list instead.

 

Cool_D