-
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
Salesforce Summer ‘19 – The Top 10 Features
Three times per year, Salesforce provides us with a host of new features across all the cloud products. Coming up soon is the Summer 19…
How 2 (Friends) Salesforce Developers Built a Million Dollar Company?
The founders of AnavClouds Software are both Salesforce professionals, doing well in their own spheres of work. They happened to meet through a common friend…
Aura Components in Salesforce - Here's All You Need to Know!
What is Aura Component? A UI framework for creating web applications for desktop and mobile platforms is called the Aura Lightning Component Framework. This contemporary…