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
vanessa veronvanessa veron 

Modify Date / Time Job Schedulable

Hi
Is it possible to modify a job schedulable created?
How do I do this in SF if I don't have the SAVE button on the part of MANAGE schedulable job?

Thank you
Best Answer chosen by vanessa veron
Sonam_SFDCSonam_SFDC
Don't think we have an option to change an apex scheduled job: https://success.salesforce.com/ideaView?id=08730000000H11Q

We also have an excisting Idea on the Idea exchange for the same on the above link. Hope I understood your requirement correctly..

All Answers

Ashish_SFDCAshish_SFDC
Hi Vanessa, 


You have to edit the Class in the Sandbox org and migrate to Production. 

We canont edit any code in Production Org. 


Regards,
Ashish
vanessa veronvanessa veron
Hi and thank you

I use Developer Edition that's why I can't change a schedulable job?
If I use the Sandbox can I change this schedulable job?
Sonam_SFDCSonam_SFDC
Don't think we have an option to change an apex scheduled job: https://success.salesforce.com/ideaView?id=08730000000H11Q

We also have an excisting Idea on the Idea exchange for the same on the above link. Hope I understood your requirement correctly..
This was selected as the best answer
vanessa veronvanessa veron
So...
To Modify un job schedulable isn't possible in salesforce platform.


Thank you my friends,
Magdiel HerreraMagdiel Herrera
I wouldn't make it a global statement, or dependent upon a particular organization,

You can Manage your Scheduled Apex jobs, under Administration Setup > Monitoring > Scheduled Jobs IF you created that job using salesforce's UI,

If you created that particular Scheduled Job (of type Scheduled Apex) using code, then you'll need to delete that job and run same code again,

You might want to re-schedule a batch just after it runs, for that you could kill the job who fired the batch and re-schedule it to run again all within apex code, that'll be the use case for a batch you want to run every 15 minutes for example,

There is also the appExchange option when it comes to useful tools, 
https://appexchange.salesforce.com/listingDetail?listingId=a0N3000000B4SSiEAN
vanessa veronvanessa veron
Thank you!

... SO: To Modify un job schedulable (created via Apex code)  isn't possible in salesforce platform.