Apexをスケジュール設定でApexクラスが検索されない件の対応
検索されないケース
public class SampleBatchSchedule implements Schedulable {
public void execute(SchedulableContext sc) {
SampleBatch batch = new SampleBatch();
database.executebatch(batch);
}
}
検索されるケース
global class SampleBatchSchedule implements Schedulable {
public void execute(SchedulableContext sc) {
SampleBatch batch = new SampleBatch();
database.executebatch(batch);
}
}