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
Paula Jarvis 18Paula Jarvis 18 

How do I identify all Scheduled Jobs and their frequency?

I need to update some scheduled jobs with a New User however I am being asked to identify the schedule. Is there a report I can run that identifies the scheduled job and its frequency?
VinayVinay (Salesforce Developers) 
Hi Paula,

You can navigate from Setup -> Monitoring -> Schduled Jobs

https://help.salesforce.com/articleView?id=sf.data_monitoring_jobs.htm&type=5

Also you can use below query to get list of scheduled jobs.
SELECT Id, CronJobDetail.Id, CronJobDetail.Name, CronJobDetail.JobType FROM CronTrigger
https://skaruz.com/salesforce-how-to-list-all-scheduled-jobs-in-apex/

Hope above information was helpful.

Please mark as Best Answer so that it can help others in the future.

Thanks,
Paula Jarvis 18Paula Jarvis 18
@Vinay Does this query indicate the frequency?
VinayVinay (Salesforce Developers) 
You would need to check schedule job logic for that and to know frequency of schedule jobs i.e at what time interval does job has to trigger.

Thanks,