Trigger: Delete all Upcoming Task from Account Post author:Swapnil Jaiswal Post published:January 5, 2025 Post category:Blog / Salesforce Post comments:0 Comments Example: Write a trigger logic such as if Account Rating change from Hot to any then delete all upcoming Task associated with that Account. Solution Set<Id> setId = new Set<Id>(); for (Id acc : trigger.newMap.keySet()) { if (Trigger.oldMap.get(acc).Rating == 'Hot' && Trigger.newMap.get(acc).Rating != 'Hot') { setId.add(acc); } } if(!setId.isEmpty()) { Date todaysDate = System.today(); List<Task> tasksToDelete = [SELECT Id From Task WHERE ActivityDate >:todaysDate and WhatId IN:setId]; delete tasksToDelete; }Copy You Might Also Like Workday – Salesforce developer interview questions October 28, 2024 HCL – Salesforce Developer Interview Questions November 7, 2024 Retrieve Assignment Rules with package.xml November 11, 2024 Leave a Reply Cancel replyCommentEnter your name or username to comment Enter your email address to comment Enter your website URL (optional) Save my name, email, and website in this browser for the next time I comment.