KMKingsley Mgbamsinkingsleymgbams.hashnode.dev·1d ago · 7 min readSummer '26: Build a Zero-JavaScript Accordion in LWC with details nameAccordions show up often in Salesforce implementations. They appear on record pages, internal admin tools, support consoles, onboarding panels, and configuration screens. The usual Lightning Web Compo00
KMKingsley Mgbamsinkingsleymgbams.hashnode.dev·Jun 7 · 11 min readSummer '26: Define Picklist Values for Apex Action Inputs Without a Custom Property EditorApex actions are one of the most useful ways to extend Flow when declarative logic is not enough. The Apex can be tested, reusable, and owned by a development team, while admins configure it inside Fl00
KMKingsley Mgbamsinkingsleymgbams.hashnode.dev·May 25 · 7 min readSalesforce Summer '26: Elastic Async Apex Limits for Queueable and Future JobsSalesforce Summer '26 introduces Elastic Limits for Asynchronous Apex Jobs, a Beta feature for orgs that hit their daily asynchronous Apex limit. Here is the feature in one sentence: Queueable and fut00
KMKingsley Mgbamsinkingsleymgbams.hashnode.dev·May 4 · 12 min readSummer '26: Apex Classes Enforce Sharing Rules by Default — Secure by Default in API v67You have probably seen an Apex class like this: public class AccountService { public static List<Account> getAccounts() { return [ SELECT Id, Name FROM Account 00
KMKingsley Mgbamsinkingsleymgbams.hashnode.dev·Apr 27 · 9 min readSalesforce Summer '26: Apex Database Operations Are Secure by DefaultThe Problem Nobody Liked Admitting Here is something every Salesforce developer has bumped into at least once: You write an Apex query. It works in your sandbox. You deploy. Then a reviewer asks the f00