salesforce创建定时任务时明明implements the Schedulable interface却提示不是的解决方法
2023年09月02日
文章浏览:229

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


关注 收藏