惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
N
Netflix TechBlog - Medium
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Blog — PlanetScale
Blog — PlanetScale
Microsoft Security Blog
Microsoft Security Blog
D
Docker
WordPress大学
WordPress大学
罗磊的独立博客
J
Java Code Geeks
博客园 - 【当耐特】
博客园 - 司徒正美
雷峰网
雷峰网
H
Help Net Security
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
宝玉的分享
宝玉的分享
Martin Fowler
Martin Fowler
T
Tailwind CSS Blog
Google DeepMind News
Google DeepMind News
M
MIT News - Artificial intelligence
Recent Announcements
Recent Announcements
B
Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Common Salesforce admin mistakes that cost companies money
Demo · 2026-04-29 · via DEV Community

Demo

As a Salesforce admin who’s managed orgs for Fortune 500 companies in healthcare, finance, and retail, I’ve seen too many preventable mistakes drain budgets. These aren’t "oops" moments—they’re direct cash leaks. Here’s what I’ve seen cost companies real money.

1. Over-Engineering Custom Objects

Every time you create a custom object instead of using standard objects or standard fields, you’re adding storage costs, slowing queries, and complicating future upgrades. A retail client built 47 custom objects for "product variants" when Salesforce’s standard Pricebook and Product2 objects would’ve sufficed. Result: $12,000 in annual extra storage costs and 40% slower reporting. They could’ve avoided this by auditing standard capabilities first.

2. Ignoring Sharing Settings

Setting sharing to "Public Read/Write" on a sensitive object isn’t just risky—it’s expensive. A financial services client configured a custom "Loan Application" object as "Public" (not realizing it held SSNs and credit scores). When a breach exposed 2,000 records, they faced a $50,000 GDPR fine and $15k in legal fees. Always use "Private" as the default and audit sharing weekly with this SOQL:

SELECT Id, OrganizationId, AccessLevel, ParentId
FROM ObjectPermissions
WHERE ParentId IN (SELECT Id FROM CustomObject WHERE NamespacePrefix = 'my_namespace')

3. Misusing Workflow Rules

Workflow rules trigger emails, field updates, and more—but overuse burns email credits. A SaaS company set up a workflow to send a "welcome email" on every new user creation (fine). Then, they accidentally added a field update that triggered it for all 10,000 existing users. They paid $800 for 10,000 extra emails (Salesforce charges $0.08/email). Fix: Test workflows in sandbox before deployment and limit email triggers to new records only.

4. Forgetting Soft Deletes

Not enabling soft deletes means accidental deletions require costly, manual recovery. A healthcare client deleted 5,000 patient records (Accounts) because "Delete" was the only option. They paid $22,000 to Salesforce’s data recovery team—$12k for the service plus $10k in lost productivity while waiting. Always enable "Soft Delete" in Setup > Data Management. It’s free and prevents this.

5. Leaving Unused Fields/Custom Settings

Every unused field bloats your org. A manufacturing client had 217 custom fields on Accounts, many from legacy projects. This slowed API calls (costing $3k in extra Salesforce API credits) and caused a 30% delay in lead assignment. Use this SOQL to find unused fields:

SELECT QualifiedApiName, NamespacePrefix
FROM CustomField
WHERE IsActive = true
AND LastModifiedDate < LAST_MONTH
AND (SELECT COUNT() FROM FieldPermissions WHERE ParentId = CustomField.Id) = 0

These mistakes aren’t about skill—they’re about process. I’ve seen teams waste $100k+ in avoidable costs because they skipped audits, ignored documentation, or rushed deployments. The fix


Need a second opinion on your Salesforce org? Request a diagnostic.