-
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
Formula Field and Validation Rule in Salesforce
Blog
in Salesforce
Formula and validation: “Control of how your data is displayed.” These rules confirm that the information a client enters in a record meets the benchmarks…
Salesforce Security Mastery: Object, Permission Sets, Field, and Record-Level Strategies with OWD
Blog
in Salesforce Admin
What You’ll Learn: How to protect an Object in Salesforce Security? What is Profile Level Security? What is Permission Set in Salesforce? Difference between Profile…