✏️ Explanatory Question

Why is BPCheckBatchJobsEnabled important for batch classes?

👁 5 Views
📘 Detailed Answer
🟢 Easy
💡

Answer with Explanation

This rule ensures that all classes extending RunBaseBatch can run in batch mode.

Fix:
Implement:

public boolean canGoBatch() { return true; }

This allows scalability and background execution.