Blogs
-
Best Way to Pull Report of All Pending Approval Requests in Salesfore
REQUIREMENT SOLUTION 1ST APPROACH – Standard Report Type 2ND APPROACH – Custom Report Type Do you know the secret of field “Unread by Owner” on Lead, learn here.
-
Create A Trigger To Tally The Quantity Of Associated Child Records linked To The Parent Object.
Create a trigger that calculates the count of child records related to parent records. Implement a custom rollup summary field using an Apex trigger. Establish a rollup summary on a lookup relationship using a trigger. To illustrate the issue, let’s consider an example. We have a lookup relationship between Accounts and Contacts, and we need…
-
How To Determine If Record Values Have Been Modified In Apex Triggers
How to Compare Old and New Values in Salesforce Triggers In Salesforce triggers, we can check if record values have changed by comparing the old values to the new ones. The Before Update and After Update triggers are invoked based on the Update DML event occurring, regardless of which field value is updated on the…