-
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
Basic Knowledge Of Artificial Intelligence (feat. Salesforce Einstein)
Artificial Intelligence (AI) is a mechanism for a machine to “think like humans” — i.e., the machine can perform tasks with the planning, reasoning, learning,…
How To Optimize Automated Tests and Securely Log in to Salesforce Without Verification Code or MFA?
Like in any software testing, automation testing of Salesforce solutions is a reliable approach to verify the functionality and integrity of the platform. Automated tests…
Delete Multiple Records Using Pagination in Lightning Component
Hello guys, today in this post we are going to learn about how to delete multiple records using pagination using Salesforce Lightning Component. But before…