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
kumar_arunkumar_arun 

How can i abort or delete Apex Job(Not scheduled) which is processing.

@Karanraj@Karanraj
Go to Setup->Jobs->Apex Jobs then you can able to abort the in process apex job. Check the below screenshot

User-added image
 
Rakesh51Rakesh51
+1 you can do something like this
 
Rather than attempting to delete the job record via DML, have you tried using the System.abortJob(String job_Id) method from the developer console
 
for(CronTrigger ct : [SELECT id, CronExpression, TimesTriggered, NextFireTime FROM CronTrigger]){
 System.abortJob(ct.Id);
}