How to Schedule a Burndown Chart Calculation
- Go to Setup.
- Navigate to Apex Classes.
- Click on Schedule Apex:
- Select the BurnDownItemScheduler class.
- Set the frequency to Weekly (select all days).
- Define a start and an end date.
- Select a start time for your scheduled job.
- Click on Save:
Alternatively, you can execute this method in the anonymous Apex screen in the Developer Console. For example run the calculation every night at 10:21pm:
copado.BurnDownItemScheduler.scheduleIt('BurnDownItemScheduler create graph for user stories', '0 21 22 * * ?');