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
Daniel R PeaperDaniel R Peaper 

Trying To Understand Scheduled Apex

I am trying to edit a schedule for some Apex classes. When I go to Setup, Monitor, Scheduled Jobs, Manage it appears from the UI that the jobs are scheduled to run on the 1st of every month. However, I can see from the Apex logs that they actually run every day. Can someone pleae explain what I'm missing here?
scottnelsonsmithscottnelsonsmith
The UI is broken.  Instead you must understand the Cron feature which is documented here:

https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_scheduler.htm

HTH