-
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

All About Data Modelling in Salesforce
In this blog, I am going to explain the topic of data modelling, fields, and object relationships. Let’s begin with: Database It is an organized…

Knowledge of Salesforce Flow and Different Type of Flows and Its Elements
What are Flows? In Salesforce, a flow is an application that automates complex business processes. Simply put, it collects data and then does something with…

Salesforce Telephony and VoIP Integration: A Beginner’s Guide
You’re likely using Salesforce’s CRM to manage your communications with leads and customers online—but not all communication occurs through digital methods. If your sales reps…