Salesforce Schedule Apex

By in
979
Salesforce Schedule Apex

In Salesforce, to Schedule Apex, you’d follow the steps below.

  1. Go to Setup, Apex Classes Salesforce Schedule Apex
  2. Click on Schedule Apex
  3. In this Screen, you have various options regarding the scheduling like the Class to schedule, the frequency of the run, etc. Salesforce Schedule Apex Details

 

Creating a Scheduled Class

You can use the below syntax to create an apex class for scheduling it for a later time.

 

global class scheduledMerge implements Schedulable {

   global void execute(SchedulableContext SC) {

      mergeNumbers M = new mergeNumbers();

   }

}

 

Code Explanation

The above code has 2 main aspects that differentiate it from other apex classes.

  1. Schedulable interface
  2. execute method

Any piece of code inside execute method will be scheduled to run later.

 

Important Considerations While Developing an Apex Scheduler

  1. Salesforce schedules the apex class for execution at the specified time. Actual execution can be delayed based on service availability.
  2. You need to be very careful if you’re planning to schedule a class from an Apex trigger. You must always make sure that the trigger won’t add more scheduled classes than the allowed limit. Particularly, you should consider API bulk updates, import wizard, mass record changes through the user interface, and all those cases where bulk records can be updated at a given time
  3. For the purpose of best practices of a class, you need to break down methods as much as you can. Even though it’s possible to do all processing in the execute method, it’s recommended that all processing take place in a different class.
  4. Synchronous Web service callouts are not supported from scheduled Apex. For making asynchronous callouts, you can go with Queueable Apex or implementing the Database.AllowsCallouts marker interface.

 

Conclusion

In this way, if a piece of code needs to be run at a particular time in the future time to time, you can use Schedule Apex and use the scheduling feature to set the frequency of execution.

 

To learn more about Apex, check out some of my related blog posts below!

 

Additional Resources

Cover Photo by Towfiqu barbhuiya on Unsplash

54321
(0 votes. Average 0 of 5)
Leave a reply

Your email address will not be published. Required fields are marked *