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
Nikhil_KhetanNikhil_Khetan 

Scheduled Apex Jobs

Hi All,

 

 

I have scheduled a batch apex through a general piece of code to run it every Morning 6 o'clock :

 

scheduledMerge m = new scheduledMerge();
string sch = '0 0 6 * * ?';
system.schedule('Merge Job', sch, m);

 

Now this is working absolutely fine and running every morning at 6.

But when it comes to my All Scheduled Jobs Page under Monitoring, and i try to manage it from there it shows that the job is running on 1st of the Month. 

Not able to get why is this so.?

 

Please help me to figure this out.