• propilot0316
  • NEWBIE
  • 0 Points
  • Member since 2011

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 0
    Replies

I'm trying to add the contract approvals related list to my visualforce page and I cant seem to find/ figure out what the name of the related list is.

 

I've trie:

<apex:relatedList list="Approval"/>

<apex:relatedList list="Approvals"/>

<apex:relatedList list="ContractApproval"/>

<apex:relatedList list="ContractApprovals"/>

 

Thanks,

Mark

I need some help..  I have a visualforce page (see code below) that I created.  What it's suppose to do is display a warning if the DFU_Status__c = Complete.  DFU_Status__c is a picklist. 

 

Any help is appericated!

 

 

<apex:page StandardController="Case" >

<script type="text/javascript"> 

if (ISPICKVAL({DFU_Status__c}, "Complete")
{
  document.write('<font size=4 color=red>Warning!</font>');
}
</script>

  
</apex:page>