By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.
You’re a Salesforce Administrator inheriting a messy org where sales reps complain about duplicate leads, support agents can’t track customer history, and managers ask for reports that don’t exist. The root cause? Misconfigured standard objects and broken relationships.
Standard objects (Account, Contact, Lead, Opportunity, Case) are the backbone of Salesforce. If you don’t understand how they work and relate to each other, you’ll: - Break data integrity (e.g., orphaned contacts, duplicate accounts).- Fail audits (e.g., missing case escalation rules).- Waste time manually fixing reports instead of automating them.
Account
Contact
Lead
Opportunity
Case
Real-world scenario:Your sales team converts leads into opportunities, but the data is inconsistent—some opportunities lack contacts, others have duplicate accounts. Your CEO asks for a report on "closed-won deals by customer," but the data is scattered. You need to fix relationships, enforce validation rules, and set up automation—fast.
This guide gives you immediate, actionable steps to master standard objects and their relationships—so you can clean up data, automate workflows, and pass the Salesforce Admin exam without memorizing fluff.
✅ Salesforce org (Developer Edition or Sandbox).✅ System Administrator access.✅ A messy dataset (or create one for testing).
Problem: Your org has Contacts not linked to Accounts, breaking reports.
Is_Orphaned
plaintext ISBLANK(AccountId)
Is_Orphaned = True
AccountId
Account_Required
"Every Contact must be linked to an Account."
ISBLANK(AccountId)
❌ Just "Account" (trick answer).
"What happens if you delete an Account with a Master-Detail relationship to Opportunities?"
❌ "Opportunities become orphans" (that’s Lookup, not Master-Detail).
"How do you prevent users from creating Contacts without Accounts?"
Challenge:Your org has Leads with missing "Company" fields. When converted, they create Accounts named "Unknown." Fix this so Leads must have a Company before conversion.
Solution:1. Go to Setup → Object Manager → Lead → Validation Rules.2. New Rule: Company_Required 3. Formula: plaintext ISBLANK(Company) 4. Error Message: "Leads must have a Company before conversion." 5. Save.
Company_Required
plaintext ISBLANK(Company)
"Leads must have a Company before conversion."
Why it works:- Salesforce blocks conversion if the validation rule fails.- Forces users to fill in Company before converting.
Commands & Shortcuts:- Find orphaned records: SELECT Id FROM Contact WHERE AccountId = NULL - Bulk update via Data Loader: Update AccountId in CSV.- Lead conversion mapping: Setup → Lead Settings → Map Lead Fields.
SELECT Id FROM Contact WHERE AccountId = NULL
Update AccountId
Standard objects are the foundation—master them, and everything else (automation, reports, security) becomes easier. Start by auditing your org’s relationships today. ?
Join 4M+ learners. Unlock unlimited quizzes, wrong-answer tracking, flashcards + reminders, study guides, and 1-on-1 challenges.