Activity Forums Salesforce® Discussions What is the Sequence of Salesforce Triggers and Order of Execution?

  • Saurabh

    Member
    April 20, 2017 at 2:38 pm

    Hi Suraj

    Salesforce Order of Execution: When you save a record with an insert, update, or upsert statement, Salesforce performs the following events in order.

    "Before Salesforce executes these events on the server, the browser runs JavaScript validation if the record contains any dependent picklist fields. The validation limits each dependent picklist field to its available values. No other validation occurs on the client side."

    On the server, Salesforce:Loads the original record from the database or initializes the record for an upsert statement.
    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. Prior to executing a trigger, Salesforce verifies that any custom foreign keys do not refer to the object itself.Salesforce runs user-defined validation rules if multiline items were created, such as quote line items and opportunity line items.
    Executes all before triggers.
    Runs most system validation steps again, such as verifying that all required fields have a non-null value, and runs any user-defined 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.
    Executes duplicate rules. If the duplicate rule identifies the record as a duplicate and uses the block action, the record is not saved and no further steps, such as after triggers and workflow rules, are taken.
    Saves the record to the database, but doesn't commit yet.
    Executes all after triggers.
    Executes assignment rules.
    Executes auto-response rules.
    Executes workflow rules.
    If there are workflow field updates, updates the record again.
    If the record was updated with workflow field updates, fires before update triggers and after update triggers one more time (and only one more time), in addition to standard validations. Custom validation rules, duplicate rules, and escalation rules are not run again.
    Executes processes.If there are workflow flow triggers, executes the flows.

    The pilot program for flow trigger workflow actions is closed. If you've already enabled the pilot in your org, you can continue to create and edit flow trigger workflow actions. If you didn't enable the pilot in your org, use the Flows action in Process Builder instead.
    Executes escalation rules.
    Executes entitlement rules.
    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.
    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.
    Executes Criteria Based Sharing evaluation.
    Commits all DML operations to the database.
    Executes post-commit logic, such as sending email.

    For further information information you can refer to:https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_triggers_order_of_execution.htm

Log In to reply.

Popular Salesforce Blogs

Popular Salesforce Videos