You need to sign in to do that
Don't have an account?
Change Owner Page for Case
I have seen that there is no straight forward way to EDIT the change owner page for cases. I have also saw posts where people say it is possible to make a visualForce page to override it. Can someone give me an example? Basically I need to get rid of the "Send Notification Email" checkbox.(we have apex that sends emails). From what I have found this is a very common problem but not too many resolutions.
Any help would be greatly appreciated.
Thanks,
I couple weeks ago I wrote my own change owner function for Cases. My users wanted a quick way to assign a Case to a new owner and they did not want to input a name, click the magnify glass, then click the name. They wanted to assign a case in as few clicks as possible. Since in my scenario, only queues and members of queues where allowed to be owners of cases, I created a pop up window that displayed all of the queues in the system and the users that where members of the queues using the <apex:selectRadio> component. Here are some code snippets of what I did:
Let me know if this works for your situation.
KUDOS!!
This isn't exactly what I was looking for but it is very nice! I'm definitely going to copy this and use it as a reference in the future. Thanks for sharing.