function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
ItsMeSolItsMeSol 

Creating a pop up Notification rather than Email Alert.

Create message/ pop up window to let the user know that creation / deletions are in process and pending approval. Add for Accounts and Campaigns

 

Can any one help me..

 

Thanks

Best Answer chosen by Admin (Salesforce Developers) 
IspitaIspita

Hi,

When an approval process assigns an approval request to a user, Salesforce automatically sends the user an approval request email. The email contains a link to the approval page in Salesforce, where the user can approve or reject the request and add comments. If email approval response is enabled, the user can alternatively reply to the email by typing approve, approved, yes, reject, rejected, or no in the first line of the email body, and adding comments in the second line. This option is especially useful for users who might receive approval requests on a mobile device.

If your organization has Approvals in Chatter enabled, you can also elect to send your approver a notification via Chatter
So either one can send email notofications or chatter updates....
Hope this helps...

All Answers

IspitaIspita

Hi,

When an approval process assigns an approval request to a user, Salesforce automatically sends the user an approval request email. The email contains a link to the approval page in Salesforce, where the user can approve or reject the request and add comments. If email approval response is enabled, the user can alternatively reply to the email by typing approve, approved, yes, reject, rejected, or no in the first line of the email body, and adding comments in the second line. This option is especially useful for users who might receive approval requests on a mobile device.

If your organization has Approvals in Chatter enabled, you can also elect to send your approver a notification via Chatter
So either one can send email notofications or chatter updates....
Hope this helps...
This was selected as the best answer
ItsMeSolItsMeSol

Is there any posible ways to have a pop up notification when I want to delete/create an account?

IspitaIspita

I fear you need to explore the trigger route for that but remember for a trigger to fired there has to update, deletion or creation of data .

In case any of the DML happens as a triggering condition you need to make use of object. addError() for your purpose but where the message gets displayed and how it gets displayed as matter of speculation till you actually implement.

ItsMeSolItsMeSol

So you mean there no other way to have an a pop up window confirming or alerting user...

 

IspitaIspita

there is no straight forward way for this you can do this through javascript and URL manipulation, which is not a very stable solution.