You need to sign in to do that
Don't have an account?
JDeitz
Remove [New] button from central Tab screen
I'd like to remove the [New] button from the Opportunity tab (screen). But I don't want to alter the Opportunity [New] functionality elsewhere.
How do I do this?
I found out solution for my problem - Override the New button with VF page(display an error message). In my case,my client did not want to create New Opportunity directly.
All Answers
Thats a bad news to hear..
Is there an idea that I can promote for this?
I found out solution for my problem - Override the New button with VF page(display an error message). In my case,my client did not want to create New Opportunity directly.
I did that too, but I still think it should be hidden if it's just going to be an error. But since I did that too I'll accept it as a solution.
Yes I agree.
Hey, in your case you can override the Opportunity tab with VF. Write code for list view which shows all the opportunities.
Something like this....
VF page:
<apex:page StandardController="Opportunities" extension="OpController" action="{!methodOnLoad}">
</apex:page>
Your controller:
Please let me know any changes to be done. If urs is professional edition then i dont think you can write apex classes.In that case please ignore this.