Understanding Algorithm Complexity in Apex: A Developer’s Guide to Writing Performant Code

Why your Apex code works in sandbox but fails in production—and how to fix it You've just deployed your trigger to production. It worked perfectly in your sandbox with 50 test records. But now, with 50,000 real-world records, your users are reporting timeouts, and your debug logs are filled with CPU time limit exceptions. Sound … Continue reading Understanding Algorithm Complexity in Apex: A Developer’s Guide to Writing Performant Code

@AuraEnabled Apex Recent Changes

With winter release round the corner and applied to lot of sandbox, a common functionality that lot of the people are facing issue with Apex class having @AuraEnabled method are failing. Previously when we used to write any aura enabled method we need not provide the access to particular profile to run the functionality. But … Continue reading @AuraEnabled Apex Recent Changes

Custom Notification in Salesforce Using Process Builders and Flows.

From the time custom notification is introduced in salesforce(Summer 19), it has been kind of replacing the extra use of Email alerts and Chatter post . Previously these were two ways to notify the user (Desktop/ Mobile ). So let us see how this is used. 1.Go to Setup >> Type Custom Notifications. 2. Click … Continue reading Custom Notification in Salesforce Using Process Builders and Flows.