-
How to Salesforce Trigger on Event Object?
trigger RichTextCustomAreaEvnt on Event (after insert,after update) {
List buffer_Attac = new List();
if(Trigger.isafter && Trigger.isInsert){
for(Event objEve : Trigger.new){
if(objEve.Description_RTA__c == Null ){
break;
}
if(objEve.Description_RTA__c.Contains('
Log In to reply.
Popular Salesforce Blogs

Learn All About Standard Controllers in Salesforce | The Developer Guide
The Visualforce controller is used to access visual markers associated with a specific link or button. These controllers can be used to provide access to…

Learn the Use of Salesforce Lightning Web Component in Flow
Lightning Flow Builder is an awesome automation tool available in Salesforce which gets the work done without using a single line of code. Nearly anything…

Remarkable Ways To Grow Your Business With Sales Cloud
The end goal of every business is to maximize its sale because that is the only thing that creates revenue for it. Lead generation, improving…