-
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
How to Design Webpages for Nonprofits Faster Using Salesforce
How to Design Webpages for Nonprofits Faster Using Salesforce Nonprofits are now looking to create smooth integration between their web pages and the Salesforce platform.…
Ultimate Guide to Choosing the Right Salesforce Consultant for Your Team
When it comes to leveraging the power of Salesforce to boost your business operations, the role of a skilled Salesforce consultant cannot be overstated. Salesforce,…
Salesforce App Development Lifecycle – Get your App on AppExchange
Even before you start coding and materializing your fabulous app out of thin air, or computer air, it is very important to establish a development…