-
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
RemoteAction Annotation In Apex | Salesforce Apex Developer Guide
Annotations: An Apex annotation, like a Java annotation, modifies how a method or class is used. Annotations begin with a @ symbol and are followed…
Tips to Choose Reliable Salesforce Consulting Partners in 2019
Salesforce now helps enterprises to streamline various facets of a business ranging from sales to product delivery and customer support. Salesforce is so popular for…
Salesforce Dynamic Forms: Overview, Benefits, Business Cases
On a user page layout in Salesforce might be placed a monolit block of fields which makes customization impossible. The task of Dynamic Forms is…