-
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
The Role of Salesforce Einstein in Marketing, Sales, and Services
Blog
in Sales, Salesforce Einstein
Salesforce Einstein is an Artificial Intelligence technology launched for the Salesforce Customer Success Platform. With Salesforce Artificial Intelligence, you can increase the potential of marketing,…
What is a Test class in Salesforce? | The Ultimate Guide
Blog
in Others
Testing is an important part of SDLC. So, before deploying our code to the production environment, Salesforce requires at least 75% of your code to…