You need to sign in to do that
Don't have an account?

How to retrieve Apex Class name from CronTrigger ?
I am working on writing a service which is expected to monitor Scheduled batch jobs. I am querying CronTrigger to get list of all scheduled classes but could not find a direct way to find out which ApexClass is scheduled.
Is there a way in recent releases to find out which apex class is scheduled in particular CronTrigger record in Apex ?
Is there a way in recent releases to find out which apex class is scheduled in particular CronTrigger record in Apex ?
Might be this link will help you.
https://salesforce.stackexchange.com/questions/47065/how-can-i-query-the-class-which-the-schedule-job-will-call/47067
Try using below SOQL:
You can go to apex scehduerl jobs from the monitering section and you can able to fine the apex class that are using in jobs ..
https://help.salesforce.com/articleView?id=code_apex_job.htm&type=5