Activity Forums Salesforce® Discussions How to handle error records in Apex Batch in Salesforce?

  • How to handle error records in Apex Batch in Salesforce?

    Posted by krati on April 13, 2020 at 5:59 pm

    How to handle error records in Apex Batch in Salesforce?

    Deepak replied 4 years ago 2 Members · 1 Reply
  • 1 Reply
  • Deepak

    Member
    April 14, 2020 at 10:26 am
    1. Have your batch class implement Database.stateful
    2. Declare some variables that are initialized in the constructor to 0. These variables count successes and errors; also a string variable that remembers the records that failed and why (initialized to empty string).
    3. Use Database.update with allOrNothing = false instead of update within execute(). Interrogate each member of Database.SaveResult[] for isSuccess() and count succcesses and failures in your stateful variables from second point. Log in the stateful variable all the errors (id of record, name of record, and error message/exception)
    4. In the finish method, send an email to the sysad of count of successes/failures + string variable of all the failures.
    5. In finish() method, write your batch results to a custom Log__c record(s

Log In to reply.

Popular Salesforce Blogs

Popular Salesforce Videos