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
SAPOCSAPOC 

Is it possible to create Time based workflow rule on Pending approval requests

I have an approval process on an objects . Is it possible to write Time based workflow rules to send email notifications everyday  reminding the approver to approve.

Best Answer chosen by Admin (Salesforce Developers) 
RoyGiladRoyGilad

Hi,

Time based WF can't do this.

You need to this using Apex (code):

 

http://www.salesforce.com/us/developer/docs/apexcode/Content/apex_scheduler.htm

 

I hope it helps,

 

All Answers

RoyGiladRoyGilad

Hi,

Time based WF can't do this.

You need to this using Apex (code):

 

http://www.salesforce.com/us/developer/docs/apexcode/Content/apex_scheduler.htm

 

I hope it helps,

 

This was selected as the best answer
SAPOCSAPOC

Can you send sample code for sending emails to users to approve/reject till the request is approved.