You need to sign in to do that
Don't have an account?

Read/Unread Opportunity
Hi Guys,
I am trying to develop a VF page that lists all the unread opportunities. Once the Opportunity is read, remove it from the list. Is there any way to do with that?
Thanks.
Like I said you will have a VF page that will be added as inline VF to standard layout.
<apex:page standardcontroller="Opportunity" extenstions="OppEXT" action="{!updateOpp}">
So whenever this VF page is opened "updateOpp" will be automatically called and you can do the update from the same.
All Answers
Well what you can do is
Thanks for the solution. But how do I update a field while an opportunity is open?
Like I said you will have a VF page that will be added as inline VF to standard layout.
<apex:page standardcontroller="Opportunity" extenstions="OppEXT" action="{!updateOpp}">
So whenever this VF page is opened "updateOpp" will be automatically called and you can do the update from the same.