When a record is saved with an insert, update, or upsert statement, the following events occur in order:
Coding Standards:
Apex is Case-Insensitive. A good practice is for class names to start with an uppercase letter and method names to start with a lowercase letter.
- The original record is loaded from the database (or initialized for an insert statement)
- The new record field values are loaded from the request and overwrite the old values
- All before triggers execute
- System validation occurs, such as verifying that all required fields have a non-null value, and running any user-defined validation rules
- The record is saved to the database, but not yet committed
- All after triggers execute
- Assignment rules execute
- Auto-response rules execute
- Workflow rules execute
- If there are workflow field updates, the record is updated again
- If the record was updated with workflow field updates, before and after triggers fire one more time (and only one more time)
- Escalation rules execute
- All DML operations are committed to the database
- Post-commit logic executes, such as sending email
Coding Standards:
Apex is Case-Insensitive. A good practice is for class names to start with an uppercase letter and method names to start with a lowercase letter.
No comments:
Post a Comment