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
levaleva 

List all scheduled job

How could I get the list of all job scheduled to run (from APEX)

 

Thank you

Best Answer chosen by Admin (Salesforce Developers) 
Naidu PothiniNaidu Pothini

Query from CronTrigger object.

 

List<CronTrigger> ctList = [SELECT Id FROM CronTrigger];