fbpx

Free Salesforce Developers Tutorials >

Chapter - 9 Apex Triggers >

Trigger.new

Trigger.new

What You’ll Learn


S2 Labs

Trigger.new

This variable returns a list of the new version of sObject records. This list is only available in insert, update, and undeletes triggers.

trigger ApexTrigger on Account(before insert) {
    for (Account acc: Trigger.new) {
        acc.NumberOfEmployees = 100;
    }
}
LWC Training

Download Study Material

Get access to exclusive study material for Salesforce Certification and ace your exams!

Download Now

Our Salesforce Certification Courses

Hey there! Glad you made it through our Salesforce Developer Training for beginners . But wait! We've got some high-in-demand Salesforce courses for you to take your Salesforce skills to the next level, making you a desired professional in the Salesforce job market.

Post a Comment

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

-9++