[SalesForce] Can’t save apex class, schedulable jobs pending

When I edit and try to save an Apex class, I get the following message:

Compile Error: This schedulable class has jobs pending or in progress at line 11 column 8

How can I fix this?

Best Answer

The reason for this error is because your apex class is used under scheduler class. You need to delete your scheduler job and recreate after the compilation.

Regards. David Lirio

Related Topic