-
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
CRM- and Rule-Based Sitecore Personalization Improves Conversion Rates | Salesforce Case Study
In this article, we explain personalization driven by market research and show how a provider of clinical equipment tripled their traffic during the pandemic. Why…
The What, Why, and How of Salesforce Change Management
If you are introducing new features or processes to a Salesforce instance, then you might make or break the system. In the contemporary business environment,…
Manual Sharing Using Apex in Salesforce - Best Practices
Apex Managed Sharing Sharing rules, they enable us to make exceptions to organization wide defaults for certain users as per our requirement.We cannot make give…