Apex类:
global class TimesheetWeeklyJob implements Schedulable{
global void execute( SchedulableContext SC ) {
WeeklyTimesheetProcess.markSubmitted();
WeeklyTimesheetProcess.createNewSheets();
}
}
却提示:
Error: You must select an Apex class that implements the Schedulable interface.
解决方法:
将类重命名后再选择,就不会提示这个错误。
如果不喜欢新名字,成功后再改回也不会有这个错误。
参考:https://developer.salesforce.com/forums/?id=906F00000008xeQIAQ