Skip to content

Instantly share code, notes, and snippets.

@charltonAthletic
Created March 5, 2015 18:27
Show Gist options
  • Save charltonAthletic/7a7bca4b177f32982696 to your computer and use it in GitHub Desktop.
Save charltonAthletic/7a7bca4b177f32982696 to your computer and use it in GitHub Desktop.
<apex:page controller="OpportunityRevisitDatesController" sidebar="true" showHeader="true">
<apex:pageBlock >
<b>Hi {!$User.FirstName} - you have <u>{! opportunities.size}</u> New Business opportunities which have
a revisit date in the past. Please update these opportunities with a correct revisit date.</b>
<apex:pageBlockSection >
</apex:pageBlockSection>
<apex:pageBlockTable value="{! opportunities}" var="opps" rendered="{! opportunities.size>0}">
<apex:column value="{!opps.Name}"/>
<apex:column value="{!opps.Account.Name}"/>
<apex:column value="{!opps.Revisit_Date__c}"/>
</apex:pageBlockTable>
</apex:pageBlock>
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment