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
Girbson Bijou 8Girbson Bijou 8 

Custom Field From User Approval History Related List Visualforce

Hi All, 
I want to display a custom field (Rich Text Image) from User to approval History related list which will display the scanned signature of an Approver in aproval process. The Message i get when i add the Signature__c field is "Invalid field Signature__c for SObject Name"
<table border="0" >
               <tr>
                <th>Approver</th> 
                <th>Status</th> 
                 <th>Comments</th> 
                <th>Signature</th>
               
            </tr>
            <apex:repeat var="cx" value="{!Material_Request__c.ProcessSteps}">
                <tr>
                    
                <td>{!cx.Actor.Name}</td> 
                <td>{!cx.StepStatus}</td>
                <td>{!cx.Comments}</td>
                <td>{!cx.Actor.Signature__c}</td>
                
                </tr>
            </apex:repeat> 
            </table>

 
AnudeepAnudeep (Salesforce Developers) 
Hi Girbson, 

Invalid field for sObject issue in Salesforce usually occurs when there is no field level security. Can you please check the field level security for the field for your profile if not done already? Thanks