SalesforceBlue

Feel the rhythm of Salesforce

Apex

Order Of Execution In Salesforce Simplified

Suppose you are told to bring groceries from the supermarket. You will first get the list of items to bring up, take your car or walk to the supermarket, purchase & pay for the goods and drive or walk back home.

In the above example, you were following a specific order to bring up the goods back to your home. Similarly, a salesforce transaction follows up a specific order for doing a series of execution which are as follows (as of writing):

  1. Loads the original record from the database or initializes the record for an upsert statement.

  2. Loads the new record field values from the request and overwrites the old values.If the request came from a standard UI edit page, Salesforce runs system validation to check the record for:
    • Compliance with layout-specific rules
    • Required values at the layout level and field-definition level
    • Valid field formats
    • Maximum field length

      When the request comes from other sources, such as an Apex application or a SOAP API call, Salesforce validates only the foreign keys. Before executing a trigger, Salesforce verifies that any custom foreign keys don’t refer to the object itself.

      Salesforce runs custom validation rules if multiline items were created, such as quote line items and opportunity line items.

  3. Executes record-triggered flows that are configured to run before the record is saved.

  4. Executes all before triggers.

  5. Runs most system validation steps again, such as verifying that all required fields have a non-null value, and runs any custom validation rules. The only system validation that Salesforce doesn’t run a second time (when the request comes from a standard UI edit page) is the enforcement of layout-specific rules.

  6. Executes duplicate rules. If the duplicate rule identifies the record as a duplicate and uses the block action, the record isn’t saved and no further steps, such as after triggers and workflow rules, are taken.

  7. Saves the record to the database, but doesn’t commit yet.

  8. Executes all after triggers.

  9. Executes assignment rules.

  10. Executes auto-response rules.

  11. Executes workflow rules. If there are workflow field updates:
    • Updates the record again.
    • Runs system validations again. Custom validation rules, flows, duplicate rules, processes, and escalation rules aren’t run again.
    • Executes before update triggers and after update triggers, regardless of the record operation (insert or update), one more time (and only one more time)

  12. Executes escalation rules.

  13. Executes the following Salesforce Flow automations, but not in a guaranteed order.
    • Processes
    • Flows launched by processes
    • Flows launched by workflow rules (flow trigger workflow actions pilot)When a process or flow executes a DML operation, the affected record goes through the save procedure.

  14. Executes record-triggered flows that are configured to run after the record is saved.

  15. Executes entitlement rules.

  16. If the record contains a roll-up summary field or is part of a cross-object workflow, performs calculations and updates the roll-up summary field in the parent record. Parent record goes through save procedure.

  17. If the parent record is updated, and a grandparent record contains a roll-up summary field or is part of a cross-object workflow, performs calculations and updates the roll-up summary field in the grandparent record. Grandparent record goes through save procedure.

  18. Executes Criteria Based Sharing evaluation.

  19. Commits all DML operations to the database.

  20. After the changes are committed to the database, executes post-commit logic are executed. Examples of post-commit logic (in no particular order) include:
    • Sending email
    • Enqueued asynchronous Apex jobs, including queueable jobs and future methods
    • Asynchronous paths in record-triggered flows

Note: During a recursive save, Salesforce skips steps 9 (assignment rules) through 17 (roll-up summary field in the grandparent record).

Here is the reference for the order of execution: Official Docs For Order Of Execution

Thank you for visiting SalesforceBlue.com
If you have any queries feel free to write down a comment below 🙂


Leave a Reply

Your email address will not be published. Required fields are marked *