
You cannot update the scheduled jobs. You need to delete the existing job and then schedule it again. It seems the once a "Scheduled job" has attained its end date salesforce does not provide the facility of extending it into future. The best way ahead would be to let it remain and schedule a new one.
Full Answer
How to update scheduled jobs in Salesforce?
You cannot update the scheduled jobs. You need to delete the existing job and then schedule it again. Setup -> Apex Classes -> Click on Schedule Job -> Select your class name and give other values Show activity on this post.
How to schedule an apex job in Salesforce?
Setup -> Apex Classes -> Click on Schedule Job -> Select your class name and give other values Show activity on this post. Steps taken to update or reschedule the scheduled jobs: a) If we have to schedule an apex job through salesforce UI, we have to go through Setup -> Develop -> Classes You will see a "Schedule Apex" button.
Is it possible to edit a scheduled job after it expires?
So as you mention in your post you yourself have figured it out and yes once a scheduled job expires you cannot edit the end date. Thanks. Existing Apex scheduled jobs are not editable.
How to use salesforce development tools?
Salesforce Development Tools Developer Console Open the Developer Console Developer Console Functionality Developer Console Query Editor Execute a SOQL Query or SOSL Search Retrieve Query Plans

How do I change a scheduled job in Salesforce?
we have to follow these steps: i)Go to setup -> search Scheduled jobs in quick search menu -> ii> go to Manage action of your scheduled job and change the parameters you want to change and click on the save button to reschedule the schedued job.
How do you edit a scheduled job?
Once a job has been created, you can use the Scheduler > Edit Job page to change the job details, for example editing the reports in the job or altering the frequency. Reports generated by scheduled jobs are distributed to one or more recipients via email.
How do I manage scheduled jobs in Salesforce?
Required Editions and User Permissions. To view this page, from Setup, enter Scheduled Jobs in the Quick Find box, then select Scheduled Jobs. Depending on your permissions, you can perform some or all of the following actions. Click Del to permanently delete all instances of a scheduled job.
How do I cancel a scheduled job in Salesforce?
Go to Setup, search for "Scheduled Jobs", find your scheduled class in the list and delete the scheduled job for your class. Show activity on this post. Go to Setup>Monitor>Jobs>Scheduled Jobs, and find the schedule job that you want to abort.
How do I see my scheduled jobs in Salesforce?
Go to setup->monitor->jobs->scheduled jobs, and you'll see a list of all scheduled jobs.
How do I change submitted user for Apex schedule jobs?
How to Change Submitted User for Apex Schedule Jobs?Go to the Scheduled Jobs menu under Setup --> Administration Setup --> Monitoring.Delete the failed job.An Admin user can see that the next scheduled export date disappears.The Admin user is free to schedule another export with an active user.
How do I reschedule a batch job in Salesforce?
Restarting the Auto Assignment BatchNavigate to Setup | Installed Packages. ... Select Configure next to Salesforce Maps.Select Auto Assignment from the left-hand side.Select Scheduled Plans.Click the Set Schedule button.Check the Run schedule button and set an interval for the assignment plan to run.Click Save.
What is Schedulablecontext in Salesforce?
Represents the parameter type of a method in a class that implements the Schedulable interface and contains the scheduled job ID. This interface is implemented internally by Apex.
What is Crontrigger in Salesforce?
CornTrigger is an object in salesforce which contains schedule information for a scheduled job . Basically it hold the CronExpression,NextFireTime,LastFireTime,StartTime ,End Time ,status etc .
How do I remove a scheduled job?
You can use the parameters of Unregister-ScheduledJob to delete scheduled jobs by ID or name, or pipe scheduled jobs from Get-ScheduledJob to Unregister-ScheduledJob . Unregister-ScheduledJob is one of a collection of job scheduling cmdlets in the PSScheduledJob module that is included in Windows PowerShell.
How do I delete a scheduled job?
Go to the Scheduled Tasks applet in Control Panel, right-click the task you want to delete, and select Delete from the displayed context menu. Click Yes to confirm the deletion. Be aware that you can't delete tasks you've created with the Task Scheduler Wizard from the command line using the AT command.
How do I stop a scheduled Apex in Salesforce?
[SELECT ID FROM CRONTRIGGER]; Then you need to abort each job using System. abortJob(
shradha jain
Hello Sanjana, You cannot update the scheduled jobs. You need to delete the existing job and then schedule it again.
madhulika shah
It seems the once a "Scheduled job" has attained its end date salesforce does not provide the facility of extending it into future.
Parul
Existing Apex scheduled jobs are not editable. A simple change like updating the frequency means you have to delete the old one, and then create a new one.
Kirandeep
No,existing Apex scheduled jobs are not editable.You need to delete old one and then create new one.
