TriggerCreate an insert trigger on Lead, which will update rating as...

Create an insert trigger on Lead, which will update rating as hot, whenever new Lead record is created.

To the above task create and trigger on Lead Object, and paste the below code to see results.

trigger Leadtrigger on Lead (before insert) {
    if(Trigger.isBefore && Trigger.isInsert){
        for(Lead eachLead: Trigger.New){
            eachLead.Rating = 'Hot';
        }
    }
}

If you have already trigger on Lead, use below code.

if(Trigger.isBefore && Trigger.isInsert){
        for(Lead eachLead: Trigger.New){
            eachLead.Rating = 'Hot';
        }
    }

- Advertisement -spot_img

More From UrbanEdge

Top Salesforce Flow Interview Questions & Answers 2024 Part – 3

Top Salesforce Flow Interview Questions & Answers 2024 Part...

Top Salesforce Flow Interview Questions & Answers 2024 Part – 2

This blog will explore some of the most commonly...

Best Practices for Lightning Web Components (LWC)

Lightning Web Components (LWC) is a modern framework by...

Top Salesforce Flow Interview Questions & Answers 2024 Part – 1

Flow Interview QuestionsWhat is Salesforce Flow?Types of Salesforce FlowsWhat...

Mastering Salesforce Flows: Streamline Your Business Processes with Ease

Understanding the benefits of using Salesforce FlowsKey components of...

Top Salesforce Static Code Analysis Tools: Enhancing Code Quality and Security

#Heading1Introduction2What is Salesforce?3The Importance of Code Analysis4Understanding Static Code...

Trigger Challenge #12: Understanding the Trigger on Account and its Impact on Salesforce Development

As a Salesforce developer, understanding how triggers work is...

Best Practices for Apex Triggers

Introduction Apex Triggers are a fundamental aspect of Salesforce development,...
- Advertisement -spot_img