Review Scheduled Jobs for Refresh Custom Settings
Learn how to manually set up the Refresh Custom Settings job after upgrading to Quotes 9.8 or later.
If you upgrade to Quotes 9.8 or a later version, the Refresh Custom Settings job in the Setup > Jobs > Scheduled Jobs will be deleted. If you still want to start the scheduled job that recurringly refreshes the custom settings, you can set it up manually:
- Open Developer Console.
- Navigate to Debug > Open Execute Anonymous Window.
- Enter the following Apex code in the Enter Apex Code window:
zqu.RefreshCustomSettingSchedulable refreshSchedulable = new zqu.RefreshCustomSettingSchedulable(); System.schedule('Refresh Custom Settings', '0 0 0 * * ?', refreshSchedulable);
- Click Execute.
- Navigate to Setup > Jobs > Scheduled Jobs and verify that the above job is running.