Real-World Scenarios
🎯 Use Cases & Scenarios
Debug Why a Salesforce Page Loads Slowly
Your users complain that a record page is slow. Find the culprit in minutes.
Workflow
- Open the record in Salesforce
- Open LWC Explorer (keyboard shortcut or sidebar)
- Select "Live Mode" to stream network traffic
-
Look for slow Apex or UI API calls — Filter by "Apex" or "UI API" chips
-
Identify the bottleneck — Is an Apex REST call taking 3+ seconds? Is a
UI API query fetching 10k records?
-
Optimize or escalate — If it's Apex, work with your dev team to
optimize the code. If it's config, investigate field security or record access logic.
Pro Tip: Check the ChangeEventHeader in CDC events. If many records are
being modified simultaneously, check if a batch job or integration is running.
Investigate Who Changed What and When
Someone changed a critical field. Track them down using Audit Trail + Show All Data.
Workflow
- Open Audit Trail from sidebar or workspace
- Filter by date range (narrow it to the time the change happened)
- Filter by section (e.g., "Users", "Security", "Organization")
- Find the relevant entry and note the user and timestamp
-
If you need field history, open the record and click "Field History" in
the sidebar
- Export the results and attach to your compliance audit trail
Bulk Export Specific Records for Analysis
Export 1000s of records to a spreadsheet for external analysis, without navigating
Salesforce UI.
Workflow
- Open SOQL Builder
-
Write a SOQL query to select the records you want (e.g., "SELECT Id,
Name, Email FROM Contact WHERE Industry = 'Technology'")
- Execute the query
-
In the results toolbar, click Export → CSV Download
- Open the CSV in Excel, Google Sheets, or your analysis tool
Faster than Data Export: The standard Salesforce Data Export tool can take
hours for large orgs. TrackForcePro's SOQL export is instant.
Investigate Record Sharing & Access Issues
A user can't see a record they should have access to. Debug the sharing rules.
Workflow
- Open the record in Salesforce
- Click "Sharing" in the sidebar
-
Review who has access — Check if the user is in the list, their access
level (View Only vs. Edit), and through what mechanism (direct share, public group, role
hierarchy)
-
If access is missing, check:
- Is the user's role higher in the hierarchy than the record owner?
- Is the user in a public group that should have access?
- Are there org-wide defaults limiting access?
- Add access manually or fix the rules in Salesforce Setup
Test Salesforce API Integrations Before Deployment
You're integrating with a third-party API. Test the REST endpoints quickly.
Workflow
- Open REST Explorer
-
Find the Salesforce API docs for the endpoint you need (e.g., Leads,
Accounts)
- In REST Explorer, enter the method (GET, POST, PATCH)
-
Enter the endpoint URL (e.g.,
`/services/data/v60.0/sobjects/Account/create`)
- Enter request body (JSON with fields to create/update)
-
Execute and check response — If you get 201 Created, your integration
logic is correct. If 400, debug the request format.
-
Once working, pass this REST Explorer request to your dev team as
documentation of what works
Monitor Org Limits Before Large Operations
You're about to run a bulk data load. Make sure you have capacity.
Workflow
- Open Org Tools → Org Limits
-
Check API Calls remaining — If you're at 90% of your daily limit, pause
and wait for the reset
-
Check Data Storage — If you're at 95%, you might not have room for bulk
inserts
-
Check File Storage — If bulk operation involves attachments, verify
space
-
If limits are tight, split the operation into smaller chunks spread
over multiple days
Best Practice: Check limits before starting ANY large operation (bulk
update, batch job, integration sync). Takes 10 seconds and prevents hours of
troubleshooting.
Compare Field Values Across Multiple Records
Three accounts look similar. Find the differences.
Workflow
- Open Show All Data on the first record
- Search for the field you want to compare (e.g., "BillingCity")
- Copy the value (click to copy)
- Navigate to the second record using the breadcrumb or search
- Show All Data opens on the new record
- Search for the same field and compare values
- Repeat for the third record
Alternative: Use SOQL Builder to query all three records in one go, then
compare in the results table.