Trigger context variables in salesforce

Trigger context variables in salesforce

What are Trigger context variables in salesforce?

Trigger context variables in salesforce

All triggers define implicit variables that allow developers to access run-time context. These variables are contained in the System.Trigger class.

Trigger Context Variables

Following are the context variable available in triggers. Please note variable availability in trigger varies according to the type of trigger events.

Here is List of Trigger Context Variables

  • isExecuting
  • isInsert
  • isUpdate
  • isDelete
  • isBefore
  • isAfter
  • isUndelete
  • new
  • newMap
  • old
  • oldMap
  • size

Here is List of all Trigger Context Variables 

  • Trigger.isExecuting: Returns true if the current context for the Apex code is a trigger, not a Visualforce page, a Web service, or an executeanonymous() API call.
  • Trigger.isInsert: Returns true if this trigger was fired due to an insert operation, from the Salesforce user interface, Apex, or the API.
  • Trigger.isUpdate: Returns true if this trigger was fired due to an update operation, from the Salesforce user interface, Apex, or the API.
  • Trigger.isDelete: Returns true if this trigger was fired due to a delete operation, from the Salesforce user interface, Apex, or the API.
  • Trigger.isBefore: Returns true if this trigger was fired before any record was saved.
  • Trigger.isAfter: Returns true if this trigger was fired after all records were saved.
  • Trigger.isUndelete: Returns true if this trigger was fired after a record is recovered from the Recycle Bin (that is, after an undelete operation from the Salesforce user interface, Apex, or the API.)
  • Trigger.new: Returns a list of the new versions of the sObject records. This sObject list is only available in insert, update, and undelete triggers, and the records can only be modified in before triggers.
  • Trigger.newMap: A map of IDs to the new versions of the sObject records. This map is only available in before update, after insert, after update, and after undelete triggers.
  • Trigger.old : Returns a list of the old versions of the sObject records. This sObject list is only available in update and delete triggers.
  • Trigger.oldMap: A map of IDs to the old versions of the sObject records. This map is only available in update and delete triggers.
  • Trigger.size: The total number of records in a trigger invocation, both old and new.

 

Trigger Context Variables Considerations

  • trigger.new and trigger.old cannot be used in Apex DML operations.
  • You can use an object to change its own field values using trigger.new, but only in before triggers. In all after triggers, trigger.new is not saved, so a runtime exception is thrown.
  • trigger.old is always read-only.
  • You cannot delete trigger.new.

 

For interview questions related to trigger, refer to below link:

Salesforce Interview Questions on Triggers

Triggers in Salesforce

For more details about context variable, please refer to below official link:

Salesforce Official link

 

Permanent link to this article: https://www.sfdcpoint.com/salesforce/trigger-context-variables-in-salesforce/

1 comment

    • sujatha on November 3, 2020 at 6:32 pm
    • Reply

    hi dureja i am new i am learning salesforce with consulatancy i have some doubts how i ca reach you

Leave a Reply

Your email address will not be published.