Salesforce Flow: The Complete Guide to Declarative Automation
Salesforce Flow has replaced Workflow Rules and Process Builder. This pillar covers the four flow types, when to...
Salesforce ships nine different APIs for nine different jobs. This pillar maps each API to its right use case — REST for everyday CRUD, Bulk for big loads,...
Wildcards, NOT LIKE syntax, escaping, and bind-variable patterns with real Apex examples.
Profiles control what a user can do; roles control what they can see. The decision rules, simply.
Compare Developer, Developer Pro, Partial Copy and Full sandboxes side-by-side.
Bulkification, trigger choice, fault paths, subflow design — the discipline that survives prod.
Step-by-step refresh, what gets wiped, and the recovery moves when something goes wrong.
WhoId points to people (Lead/Contact); WhatId points to records (Account/Opportunity).
Decimal vs Double, Long vs Integer, sObjects, collections — choose right the first time.
How VS Code talks to your org under the hood, and when to reach for it instead of Metadata API.
LightningModal vs custom — markup, parent-child events, focus trap, copy-paste code.
Prerequisites, the four required permissions, and the Setup toggle that turns it on.
Salesforce Flow has replaced Workflow Rules and Process Builder. This pillar covers the four flow types, when to...
Apex is Salesforce's strongly-typed, server-side language. This pillar covers data types, triggers, async...
SOQL is the SQL-flavored query language Salesforce ships for reading data. This pillar page covers every operator,...
Salesforce Agentforce Service Agent answers customer questions autonomously. Here's what it can and can't do, the...
Every Apex String method that matters in real code — split, join, contains, trim, escape, format, and the ones...
User Acceptance Testing in Salesforce — which sandbox to use, how to write test scripts, who signs off, and the...
Apex triggers come in two timing variants (before and after) and seven event types. Knowing which to use prevents...
Twelve copy-paste Salesforce validation rules covering required-field logic, regex patterns, role-based...
Four ways to get a Salesforce report into Excel — Lightning Export, Printable View, scheduled email subscription,...
SOQL doesn't have a CONTAINS keyword — but most queries searching for one need LIKE with wildcards or INCLUDES for...