Friday, May 20, 2022

Enable batch retryable in D365 FO

In the batch class implement following :

class GITS_ImportFromAttendanceList extends RunBaseBatch implements BatchRetryable    




and following method

[Wrappable(true), Replaceable(true)]

    public boolean isRetryable()

    {

        return true;

    }