-
Issue with After Trigger And Before Trigger in Salesforce
Hi All,
this trigger is not working
trigger ClosedOpportunityTriggera on Opportunity (before insert,before update) {
List<Task> toBeAddedTasks = new List<Task>();
for(Opportunity A:[SELECT id FROM Opportunity WHERE StageName = 'Closed Won' AND id IN :Trigger.New])
{ toBeAddedTasks.add(new Task(Subject = 'Follow Up Test Task', WhatId = A.Id)); }
upsert toBeAddedTasks; }it is working when i change before insert to after and before update to after
trigger ClosedOpportunityTriggera on Opportunity (after insert,after update) {
List<Task> toBeAddedTasks = new List<Task>();
for(Opportunity A:[SELECT id FROM Opportunity WHERE StageName = 'Closed Won' AND id IN :Trigger.New])
{ toBeAddedTasks.add(new Task(Subject = 'Follow Up Test Task', WhatId = A.Id)); }
upsert toBeAddedTasks; }i need to know why it is not working similar in both scenario
thanks
Log In to reply.
Popular Salesforce Blogs
Salesforce Marketing Cloud Products
Salesforce Marketing Cloud Products Marketing Cloud is a family of seven primary products which are further categorized into three different buckets. Every product and various…
Learn All About Flows in Salesforce and Its Powers
What is a Flow in Salesforce? In Salesforce, a flow is an application that computes complex business measures. Basically, it gathers information and afterwards accomplishes…
Enhance Your Cloud Security With Salesforce Shield
Ever since Cloud came into play, Data security is the buzzword that reverberates all over the corporate world. It has been proven time and again that…
Popular Salesforce Videos
What is Campaign Member in Salesforce? | How to add Leads and Contacts in Campaign object's record?
This video explains Campaign Members in-depth. Let's discuss the following things in this video: 1. What is the significance of Campaign members in Salesforce? 2.…
Dreamforce To You 2020 - Algoworks
The wait is over – Dreamforce will be going ahead in 2020! Salesforce has gone back to the drawing board and rebuilt Dreamforce 2020 for…
Man Free Climbs 1,070-foot Salesforce Tower in San Francisco
A man free climbed San Francisco's Salesforce Tower Tuesday morning in response to the leaked draft in the Supreme Court Roe v. Wade abortion case.…