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
George Liang 3George Liang 3 

Apex script unhandled exception - Developer script exception from "Company" : 'BatchGetPdfFilledVal' for job id '7073600006jW7fr' : Read timed out

Got the dreaded email from Salesforce. However, I cannot find the code, job, or the apex class with any of the reference id in the message. I tried looking at Apex Jobs, Apex Classes, and Global Search using Developer Console... can anyone point me to the right direction and diagnose this for me.

Apex script unhandled exception by user/organization: user id / org id

Failed to process batch for class 'BatchGetPdfFilledVal' for job id '7073600006jW7fr'

caused by: System.CalloutException: Read timed out

Class.BatchGetPdfFilledVal.execute: line 86, column 1
Raj VakatiRaj Vakati
Try this Query and see
SELECT Id, CronJobDetail.Id, CronJobDetail.Name, CronJobDetail.JobType 
FROM CronTrigger ORDER BY CreatedDate DESC

 
George Liang 3George Liang 3
Thanks. I tried it but only returned 1 record.