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
jotr408jotr408 

Display Approval History details

I've created a read-only VF page which is triggered on a Print button that calls upon my custom object which does have the Approval Workflow functionality.  What I'm trying to do is display specific fields within the approval history part and having trouble.  Looked at other threads and they show this method:

<apex:relatedList list="ProcessSteps"></apex:relatedList>

 Which calls the entire history details with strange months & numbers at the end of it as well.  How do I call like a specific field like Approver name or Approval date, etc. This is what it looks like now.  I just want to call upon each field indivually to fit wit the rest of my VF page. 

Navatar_DbSupNavatar_DbSup

Hi,

 

You can try the standardStylesheets="false" in <apex:page> attribute in your vf page.

 

Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved. 

jotr408jotr408

Navatar_DBSup, that did get rid of the strange numbers but do you know how I can retrieve each field separately?