You need to sign in to do that
Don't have an account?
Salesforce Blitz
Trigger to send record in email body
I have a Workflow which sends email link of record to set of users when Opportunity probability >=70.
I have OWD set to private.
So the users are facing insufficient privilages error when clicking n the link.
Any alternative way of achieveing this.Need to display record to the email recepient.
(Big Deal Alert doesn't suit our requirement as we have VF pages over riding the PageLayouts).
Any help/suggestion appreciated.
Thanks
I have OWD set to private.
So the users are facing insufficient privilages error when clicking n the link.
Any alternative way of achieveing this.Need to display record to the email recepient.
(Big Deal Alert doesn't suit our requirement as we have VF pages over riding the PageLayouts).
Any help/suggestion appreciated.
Thanks
You can use one of the following:
Create a VF and execute it on System Mode ( ie. use without sharing in your Controller Class). Use <apex:detail> tab to show the link of the opportunity which you can get from you controller by querying.
OR
Write APEX SHARING to grant the access to your users everytime.
OR
Assuming your account is Private too, you could create a saring rule with criteria Opportunity probability >=70.
Regards
Medhya Mahajan