Apex articles
Page 4 of 9 · 107 articles
Salesforce Spring '26 - Apex Cursors and LWC Expressions
I've been testing the Salesforce Spring '26 preview, and the new Apex Cursors change what is realistic for large data...
Mastering the Apex Approval Process for Complex Logic
Standard approval tools are great, until they aren't. Here is how I use Apex to handle the complex routing and bulk...
Guide to the Apex Zip Namespace in Salesforce Spring '25
Salesforce finally added a native way to handle zip files without AWS or external libraries. Here is how ZipWriter and...
How to Stay Under Asynchronous Apex Limits in Salesforce
Ever hit a 'Too many future calls' error right before a big deployment? It happens to the best of us, and it usually...
How to Use Apex Cursors to Stream Large Datasets in LWC
If you are tired of hitting heap limits when loading records into LWC, look at Apex Cursors. They handle large data...
8 Practical Agentforce Use Cases for Salesforce Developers
I've been experimenting with Vibe coding and it has changed how I approach legacy projects. Here are 8 ways Agentforce...
Calculate Apex Business Hours and Day of Week in Salesforce
Stop letting weekends wreck your lead response reports. Here is the Apex I use to find the day of the week and count...
Apex vs Flow - When to Use Code Over Salesforce Automation
We've all heard the 'Flow First' mantra, but sometimes you want the power of code. Here is where I stop building Flows...
Apex Trigger Upsert - How Many Times Does It Execute?
Your automation runs twice during an upsert because Salesforce splits the records into two buckets before the trigger...
Set Salesforce User Passwords with Apex System.setPassword
Setting up test users by hand is a waste of time. Apex System.setPassword is the fastest way I have found to get a team...
Asynchronous Apex in Salesforce - When to Use Each Type
Ever hit a CPU limit while writing a trigger? Asynchronous Apex moves the heavy work into the background so your users...
Create an LWC datatable tooltip with Native Features
Before you build a custom hover component for a Salesforce table, try the native tooltip attribute on...