Salesforce - sgml/signature GitHub Wiki
| Tool | Primary Function | Typical Use Case | Cost |
|---|---|---|---|
| Data Loader | Bulk data import/export | Insert, update, delete, and export records via CSV | Free, included with Salesforce |
| Field Dumper | Metadata export | Dump object/field definitions into Excel for documentation | Free, AppExchange utility |
| Workbench | Web‑based admin tool | Query data, manage metadata, run REST/SOAP API calls | Free, community-supported |
| Salesforce Inspector | Data inspection | Quick view/export of object data directly from Salesforce UI | Free |
| Force.com CLI (sfdx) | Command‑line interface | Scripted data and metadata operations | Free, open‑source |
| Apache Ant | Build automation | General build tool used with Salesforce metadata tasks | Free, open‑source |
| Salesforce Migration Tool | Metadata migration | Deploy/retrieve metadata between Salesforce orgs using Ant scripts (ant-salesforce.jar) | Free, included with Salesforce |
Unique capabilities
- Unified DevOps command surface for metadata deploy/retrieve, org creation, scratch org lifecycle, and packaging.
- Source-tracking for scratch orgs (detects changed metadata automatically).
- Plugin ecosystem (official and community) enabling automation beyond metadata (Apex tests, data commands, org snapshots).
- CI/CD-friendly: designed for headless execution in pipelines.
- Local project model (SFDX project structure) that no API provides.
What only sf CLI can do
- Create, delete, or clone scratch orgs.
- Manage DevHub, second-generation packaging, and unlocked packages.
- Run Apex tests and retrieve code coverage locally.
Unique capabilities
- Legacy metadata deploy/retrieve using the Metadata API via XML manifests.
- Deterministic, file-based deployments ideal for older orgs that are not using SFDX.
- Supports metadata types that are not yet supported by sf CLI (because it directly wraps Metadata API).
- No project structure is required and it works with any folder layout.
What only ANT can do
- Run massive metadata deployments in environments where SFDX is not allowed.
- Operate in air-gapped or restricted enterprise build systems that only support ANT.
Unique capabilities
- Strongly typed WSDL contract (Enterprise WSDL) that generates classes in Java or .NET.
- Full CRUD and describe metadata in a single contract.
- Transaction-style operations (create, update, or delete multiple records in one call).
- Field-level metadata introspection (describeSObjects) that is not available in Bulk APIs.
What only SOAP API can do
- Provide compile-time type safety for enterprise systems.
- Offer deep metadata descriptions (fields, picklists, relationships) in one call.
Unique capabilities
- File-based ingestion via SFTP servers (Salesforce does not provide native SFTP; partners or middleware do).
- Supports very large files (GB-scale) before loading into Salesforce.
- Batch-friendly for nightly or weekly loads.
- Works with non-API-capable legacy systems that can only drop files.
What only SFTP workflows can do
- Handle massive flat-file ingestion without API limits.
- Integrate with mainframes, ERPs, and HRIS systems that cannot call APIs.
Unique capabilities
- Batch-oriented CSV upload with explicit batch creation and chunking.
- Parallel versus serial mode control (serial mode avoids locking).
- Hard delete support (v2 supports it now, but v1 was first).
- PK chunking for large queries.
What only Bulk API v1 can do
- Fine-grained control over batch size and parallelism.
- PK chunking for SOQL queries (v2 does not support PK chunking).
Unique capabilities
- True RESTful interface (no batch management).
- Automatic chunking because Salesforce handles splitting and parallelization.
- Simplified job lifecycle (create job, upload data, and then mark it done).
- Better error reporting with structured JSON results.
- Higher throughput for ingest jobs.
What only Bulk API v2 can do
- Provide server-managed chunking with no client logic.
- Support multipart uploads for large files via REST.
- Offer cleaner, modern REST semantics for bulk ingest.
(This refers to the new External Client Credentials Flow and External Client API introduced in 2023 and 2024.)
Unique capabilities
- Client Credentials OAuth flow that is purpose built for server-to-server integrations.
- Allows non-Salesforce systems to obtain access tokens without a user.
- Fine-grained permission scopes (API scopes and object scopes).
- No Connected App user mapping is required.
- Modern OAuth 2.0 alignment (RFC compliant).
What only External Client API can do
- Provide true client-credentials authentication without JWT Bearer or user context.
- Issue scoped access tokens that restrict API access by object or operation.
- Enable external clients to authenticate without storing certificates (if using symmetric secrets).
Steps
- Install the Salesforce CLI on your workstation.
- Open a terminal and run the command:
sf org login web --target-org [email protected] - A browser window opens. Log in with your Salesforce credentials.
- Approve the OAuth request to allow the CLI to access the org.
- Return to the terminal and confirm the connection with:
sf org list - (Optional) Set the org as the default for future commands:
sf config set target-org=myOrgAlias
- Installation: 2 to 5 minutes
- Authentication: 30 to 60 seconds
- Verification: 10 seconds
- Total: 3 to 7 minutes
- Ensure you are authenticated to the target org.
- Run the command to list all objects:
sf data query --query "SELECT QualifiedApiName FROM EntityDefinition" --target-org [email protected] - Review the output in the terminal.
- (Optional) Export the results to a JSON or CSV file using shell redirection:
sf data query --query "SELECT QualifiedApiName FROM EntityDefinition WHERE IsCustomSetting = false AND IsCustomizable = true AND NamespacePrefix = null" --json > custom_objects.json
- Query execution: 1 to 3 seconds
- Review and export: 10 to 20 seconds
- Total: 15 to 30 seconds
- Retrieve all object metadata using the Metadata API via the CLI:
sf project retrieve start --metadata "CustomObject" - After retrieval, navigate to the force-app or metadata directory where the object XML files were downloaded.
- Use a script or command-line tool to parse the XML files and extract the fields you want into CSV format. For example, using a simple shell pipeline:
grep -R "<fullName>" -n force-app/main/default/objects > object_metadata_raw.txt - Convert the raw output into CSV using a script in Python, Node.js, or a shell tool such as awk or sed.
- Save the final CSV file to your project directory.
- Retrieve all Users using the SOQL API via the CLI:
sf data query -q "SELECT Id, Name, Email FROM User" --target-org [email protected]
- User data retrieval: 10 to 20 seconds depending on org size
- Total: 30 seconds to 2 minutes
| Category | What Triggers the Limit | Salesforce Default Quota | HubSpot Default Quota | Soft or Hard Cap | Example User Story |
|---|---|---|---|---|---|
| API Calls | Exceeding daily org API allocation | ~15000 calls/day baseline plus license multipliers | 100000 calls/day per app | Hard cap (requests blocked once exceeded) | A marketing team’s nightly ETL job fails when API calls exceed the daily quota, forcing them to reschedule data syncs. |
| Concurrent Requests | Too many long running requests | 25 concurrent long running requests | HubSpot does not enforce concurrency caps | Hard cap (excess requests rejected) | A developer triggers multiple heavy SOQL queries at once; the 26th request is rejected until earlier ones finish. |
| Apex Governor Limits | CPU, heap, SOQL, DML, callouts | CPU 10000 ms; SOQL 100; DML 150; Callouts 100 | Not applicable | Hard cap (uncatchable exceptions) | A custom Apex trigger loops through too many records, hitting the SOQL query limit and throwing a System.LimitException. |
| Async Apex | Too many queued jobs | 250000 AsyncApexExecutions per 24h | Not applicable | Hard cap (jobs fail once exceeded) | A data migration queues thousands of batch jobs; once the async job limit is hit, new jobs are rejected. |
| Bulk API | Too many batches/day or oversized batches | 15000 batches/day; 10000 records/batch | 10000 records per batch; 100 requests/10s | Hard cap (batch rejected) | An integration tries to upload 20,000 records in one batch; Salesforce rejects the batch for exceeding the record limit. |
| Platform Events | Exceeding publish or delivery caps | 50000 event publishes/day | No equivalent | Hard cap (publishes blocked) | An IoT app publishes sensor events continuously; once the daily publish cap is reached, further events are blocked. |
| Change Data Capture | Too many CDC events | 100000 events/day | Webhooks: 10000 deliveries/10s per app | Soft cap (throttling/delays applied) | A sales org enables CDC on multiple objects; when event volume spikes, delivery is throttled and delayed until capacity frees. |
| No-Code Write-Path | GoF Pattern | Idempotency | Determinism | Open-Source Specifications Used | Salesforce UI Navigation and Form Field Submission Checklist | Example Transaction (Step Function -> Salesforce -> Email) | Salesforce Request Equivalent | Salesforce Response Equivalent | Trailhead Courses (Count) | Replayability (Impact of Duplicates) | Salesforce Custom Code Required (Comparison) | External Custom Code and Endpoint Checklist | Platform Events Column | Ordering Guarantees | Retry Semantics |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Flow + Platform Events | Observer | Idempotency Key = hash(foo, bar). Flow must check if a record with this ID already exists before creating a new one. | Not fully deterministic. Event ordering is not guaranteed; duplicates may arrive; branching adds nondeterminism. | Open-Source Specs: JSON (RFC 8259), REST, SHA-2 or SHA-3 hashing (conceptual), Event-driven patterns | Salesforce UI Steps: 1. Setup -> Platform Events -> Create baz__e. 2. Flow -> Trigger: Platform Event baz__e. 3. Assignment: compute ID. 4. Create Records. 5. Send Email. 6. Activate. | Step Function publishes baz__e -> Flow subscribes -> Flow computes ID -> Flow creates "bar" -> Flow emails [email protected]. | POST /services/data/vXX.X/sobjects/baz__e/ | 201 Created with replay ID | 3 | Replay-dangerous. Duplicate events always re-trigger the Flow and create duplicate records and duplicate emails unless deduped. | Least custom code. No Apex, no OpenAPI, no external endpoints. | None required. No external API. No custom server. No OpenAPI. No external hosting. Step Function only needs permission to POST the Platform Event. | Uses Platform Events. Risks: duplicate delivery, out-of-order events, replay issues, no guaranteed ordering, requires dedupe logic. | No ordering guarantees. Platform Events may arrive out of order, may be delayed, and may be replayed unpredictably. | Retry is unsafe. Retrying the publish creates a new Platform Event, which always re-triggers the Flow. Requires explicit dedupe logic to avoid duplicate records and emails. |
| Flow + External Services | Adapter | Idempotency Key = hash(foo, bar). Upsert makes the operation naturally idempotent. | Deterministic. OpenAPI schema enforces strict validation; identical payloads behave identically. | Open-Source Specs: OpenAPI 3.x, JSON Schema, REST, SHA-2 or SHA-3 hashing | Salesforce UI Steps: 1. External Services -> Register OpenAPI. 2. Flow -> Add External Service Action. 3. Map fields. 4. Assignment: compute ID. 5. Upsert Records. 6. Send Email. 7. Activate. | Step Function calls External Service -> Flow maps fields -> Flow computes ID -> Flow upserts "bar" -> Flow emails [email protected]. | External Service action defined by OpenAPI schema | REST response mapped into Flow | 2 | Replay-safe for data. Upsert prevents duplicate records. Duplicate emails still possible unless suppressed. | Moderate custom code. Requires writing and maintaining an OpenAPI spec. | External code required. Must host a REST API endpoint that matches the OpenAPI spec. Must implement request and response bodies exactly as defined. Must handle auth. Must handle validation and idempotency. Must be reachable by Salesforce over HTTPS. | Does not use Platform Events. Advantage: no duplicate event risk, no replay issues, no ordering problems, no event bus latency. | Strong ordering guarantees. External REST calls execute synchronously and deterministically. Ordering is controlled by the caller. | Retry is safe for data. Upsert ensures the same ID overwrites the same record. External API may retry internally depending on its design. Duplicate emails still possible unless Flow suppresses them. |
| Flow + Named Credentials (HTTP Callout) | Proxy | Idempotency Key = hash(foo, bar). Flow must dedupe before the no-op callout. | Fully deterministic. Platform Event trigger plus no-op callout means deterministic behavior. | Open-Source Specs: HTTP/1.1 (RFC 7230-7235), REST, JSON, SHA-2 or SHA-3 hashing, Event-driven patterns | Salesforce UI Steps: 1. Platform Events -> Create baz__e. 2. Named Credentials -> New (no-op endpoint). 3. Flow -> Trigger: Platform Event baz__e. 4. Assignment: compute ID. 5. Action: HTTP Callout (no-op). 6. Send Email. 7. Activate. | Step Function publishes baz__e -> Flow fires -> Flow computes ID -> Flow performs no-op callout -> Flow emails [email protected]. | POST /services/data/vXX.X/sobjects/baz__e/ plus Named Credential callout (no-op) | Upstream HTTP response irrelevant | 4 | Replay-dangerous. Duplicate Platform Events always re-trigger the Flow and send duplicate emails unless deduped. | Most custom code (still low-code). Requires configuring Named Credentials and optional custom headers. | Minimal external code. Endpoint must exist but can return static JSON. No logic required. No authentication required if public. Can be a mock server. Must be reachable over HTTPS. | Uses Platform Events. Risks: duplicate triggers, replay issues, event ordering problems, requires dedupe logic to avoid duplicate emails. | No ordering guarantees. Platform Events may arrive out of order, and the Flow will process them in the order received, not the order sent. | Retry is unsafe. Retrying the publish creates a new Platform Event, which re-triggers the Flow. No-op callout does not mitigate duplicates. Requires dedupe logic to avoid duplicate emails. |
| Setup Method | GoF Pattern | Idempotency | Determinism | Open-Source Specifications Used | AWS Console Navigation and Setup Checklist | Example Transaction (User -> AWS -> Windows Server) | AWS Request Equivalent | AWS Response Equivalent | AWS Training Resources (Count) | Replayability (Impact of Duplicates) | AWS Custom Code Required (Comparison) | External Custom Code and Endpoint Checklist | Platform Events Column | Ordering Guarantees | Retry Semantics |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| AWS Marketplace AMI with Visual Studio preinstalled | Factory Method | Idempotent if the same AMI ID is used. Launching multiple instances creates identical environments. | Fully deterministic. AMI contents are fixed and identical across launches. | Open-Source Specs: RDP (RFC 6143 conceptual), PowerShell, HTTP/HTTPS, JSON for AWS APIs | AWS UI Steps: 1. EC2 -> Launch Instance. 2. Choose Marketplace. 3. Search "Visual Studio". 4. Select Windows Server + Visual Studio AMI. 5. Choose instance type. 6. Configure networking. 7. Launch. | User launches instance -> AWS provisions AMI -> Windows boots with Visual Studio preinstalled -> User connects via RDP. | RunInstances API call with Marketplace AMI ID | EC2 returns InstanceId and state transitions | 2 | Replay-safe. Re-launching creates new identical instances. No risk of partial installs or duplicates. | Least custom code. No scripts, no installers, no configuration logic. | None required. No external endpoints. No hosting. No bootstrap scripts. | Does not use Platform Events. Advantage: no event ordering risk, no replay issues, no asynchronous triggers. | Strong ordering guarantees. AMI provisioning is synchronous and deterministic. | Retry is safe. Retrying RunInstances simply creates another identical instance. |
| Manual installation on vanilla Windows Server EC2 | Builder | Idempotency depends on user discipline. Manual steps can drift or diverge. | Not deterministic. Human-driven installation varies by timing, patch level, and manual choices. | Open-Source Specs: RDP, PowerShell, HTTP/HTTPS, MSI installer standards | AWS UI Steps: 1. EC2 -> Launch Instance. 2. Choose Windows Server base AMI. 3. Launch instance. 4. RDP into server. 5. Download Visual Studio installer. 6. Run installer manually. 7. Configure workloads. | User launches instance -> RDP -> manually installs Visual Studio -> config varies by user actions. | RunInstances API call with Windows Server AMI ID | EC2 returns InstanceId; installation is manual and not reflected in AWS API | 1 | Replay-dangerous. Manual installs repeated multiple times produce inconsistent environments and possible misconfigurations. | Most custom code (human code). Manual steps, custom settings, ad hoc scripts. | External code optional. May require downloading installers, extensions, or dependencies from external endpoints. | Does not use Platform Events. Advantage: no event bus risk, but manual steps introduce human error. | No ordering guarantees. Manual steps can be performed in any order, leading to inconsistent results. | Retry is unsafe. Retrying manual installation can produce divergent configurations and inconsistent environments. |
| Automated installation using EC2 Launch Template + User Data (PowerShell bootstrap) | Template Method | Idempotent if the same script and template are used. Script produces identical results across instances. | Deterministic if script is deterministic. External downloads may introduce variability. | Open-Source Specs: PowerShell, HTTP/HTTPS, JSON for AWS APIs, EC2 User Data standards | AWS UI Steps: 1. EC2 -> Launch Templates -> Create Template. 2. Add User Data with PowerShell script to install Visual Studio. 3. Launch instance from template. 4. Instance boots and runs script automatically. | User launches instance -> EC2 injects User Data -> Windows runs PowerShell -> Visual Studio installs automatically -> User connects via RDP. | RunInstances with LaunchTemplateId and UserData | EC2 returns InstanceId; bootstrap logs available via EC2 console | 3 | Replay-safe for data. Re-running template produces identical instances unless external URLs change. | Moderate custom code. Requires writing PowerShell bootstrap script. | External code required. Script must download Visual Studio installer from Microsoft endpoints. Must handle retries, checksums, and dependencies. | Does not use Platform Events. Advantage: no event ordering risk; automation is synchronous at boot. | Strong ordering guarantees. User Data executes in a fixed sequence at first boot. | Retry is mostly safe. Re-running template creates new identical instances. Script retries must be handled manually. |
@IsTest
private class QuirkExamplesDataDrivenTest {
// Simple descriptor for each quirk test
private class QuirkCase {
String name;
String body;
Boolean expectException;
String expectedMessageFragment;
QuirkCase(String name, String body, Boolean expectException, String expectedMessageFragment) {
this.name = name;
this.body = body;
this.expectException = expectException;
this.expectedMessageFragment = expectedMessageFragment;
}
}
// Build all test cases in one place
private static List<QuirkCase> buildCases() {
return new List<QuirkCase>{
new QuirkCase(
'case-sensitive-json-keys',
'{"firstname":"Ada"}',
false,
null
),
new QuirkCase(
'reserved-keyword-field-names',
'{"type":"example"}',
false,
null
),
new QuirkCase(
'uncatchable-json-parse-errors',
'{"name":"Ada"',
true,
'Unexpected end of JSON'
),
new QuirkCase(
'strict-content-type-requirements',
'{"x":"y"}',
false,
null
),
new QuirkCase(
'no-array-object-coercion',
'{"name":"Ada"}',
true,
'Cannot deserialize instance'
),
new QuirkCase(
'rigid-datetime-formatting',
'{"when":"2025-01-01 12:00:00"}',
true,
'Invalid date'
),
new QuirkCase(
'heap-limit-on-large-payloads',
'{"big":"' + ''.padLeft(500000, 'x') + '"}',
false,
null
),
new QuirkCase(
'enum-string-mismatch-failures',
'{"state":"wrongvalue"}',
true,
'Invalid enum'
),
new QuirkCase(
'nested-dynamic-map-casting',
'{"foo":{"bar":{"baz":"bop"}}}',
false,
null
)
};
}
// Dispatcher that calls the correct handler based on the quirk name
private static void dispatch(QuirkCase qc) {
RestRequest req = new RestRequest();
req.httpMethod = 'POST';
req.requestBody = Blob.valueOf(qc.body);
// Only strict-content-type test needs a wrong header
if (qc.name == 'strict-content-type-requirements') {
req.addHeader('Content-Type', 'text/plain');
}
RestContext.request = req;
RestContext.response = new RestResponse();
if (qc.name == 'case-sensitive-json-keys') {
CaseSensitiveDemo.run();
return;
}
if (qc.name == 'reserved-keyword-field-names') {
ReservedKeywordDemo.run();
return;
}
if (qc.name == 'uncatchable-json-parse-errors') {
ParseErrorDemo.run();
return;
}
if (qc.name == 'strict-content-type-requirements') {
ContentTypeDemo.run();
return;
}
if (qc.name == 'no-array-object-coercion') {
ArrayCoercionDemo.run();
return;
}
if (qc.name == 'rigid-datetime-formatting') {
DateTimeDemo.run();
return;
}
if (qc.name == 'heap-limit-on-large-payloads') {
HeapLimitDemo.run();
return;
}
if (qc.name == 'enum-string-mismatch-failures') {
EnumDemo.run();
return;
}
if (qc.name == 'nested-dynamic-map-casting') {
NestedMapDemo.run();
return;
}
}
@IsTest
static void runAllQuirkTests() {
for (QuirkCase qc : buildCases()) {
Boolean threw = false;
String msg = null;
try {
dispatch(qc);
} catch (Exception e) {
threw = true;
msg = e.getMessage();
}
if (qc.expectException) {
System.assert(threw, 'Expected exception for ' + qc.name);
System.assert(msg.contains(qc.expectedMessageFragment),
'Expected message fragment for ' + qc.name);
} else {
System.assert(!threw, 'Did not expect exception for ' + qc.name);
}
}
}
}
project: Low-Code Salesforce REST API Endpoint with OAuth
description: >
Synopsis of how to build and secure a low-code REST API endpoint in Salesforce
using OAuth 2.0. Emphasizes environment discipline, minimal Apex scaffolding,
and provenance tagging for deployments.
prerequisites:
- Salesforce org (Developer, Sandbox, or Production)
- Salesforce CLI (sfdx) installed and authenticated
- Basic Apex knowledge
- Connected App configured for OAuth
steps:
- step: Create Connected App
details:
- Navigate to Setup -> App Manager -> New Connected App
- Enable OAuth Settings
- Callback URL: https://login.salesforce.com/services/oauth2/callback
- Scopes: api, refresh_token
- Save and note Client ID and Client Secret
- step: Define REST Endpoint
apex_class: |
@RestResource(urlMapping='/MyService/*')
global with sharing class MyService {
@HttpGet
global static String doGet() {
return 'Hello from Salesforce!';
}
}
notes:
- @RestResource maps endpoint to /services/apexrest/MyService
- Methods (@HttpGet, @HttpPost, etc.) define supported HTTP verbs
- step: Secure with OAuth
flows:
- Web Server Flow: Redirect users to Salesforce login
- JWT Bearer Flow: Use certificates for server-to-server auth
example_call: |
curl https://yourInstance.salesforce.com/services/apexrest/MyService \
-H "Authorization: Bearer <access_token>"
- step: Test Endpoint
tools:
- Postman
- curl
notes:
- Verify responses
- Ensure proper scope enforcement
- step: Deploy Across Orgs
commands:
- Add Apex class to force-app source
- sfdx force:source:deploy -p force-app -u QAOrg
notes:
- Maintain provenance tags (alias + timestamp) for traceability
operational_distinctions:
- step: Connected App
purpose: OAuth client registration
characteristic: Point-and-click setup
- step: Apex REST Class
purpose: Define endpoint
characteristic: Minimal Apex code
- step: OAuth Flow
purpose: Secure access
characteristic: Standard Salesforce OAuth
- step: Testing
purpose: Validate endpoint
characteristic: Simple token + REST call
- step: Deployment
purpose: Move across orgs
characteristic: CLI alias discipline
commentary:
- Low-code aspect: Salesforce handles OAuth and REST scaffolding; minimal Apex required
- OAuth scopes: Define client permissions (e.g., read vs. write)
- Environment discipline: Test in Dev/QA before exposing in Production
- Provenance tagging: Document deployments with org alias + timestamp
references:
- Salesforce Apex REST Documentation: https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_rest.htm
- Salesforce OAuth 2.0 Guide: https://help.salesforce.com/s/articleView?id=sf.remoteaccess_oauth_flows.htm
-
What happens:
- Old data is full of mistakes
- Some records are copied twice
- Some info is missing or wrong
-
Why it's bad:
- Makes reports confusing
- People stop trusting the system
-
What happens:
- You try to copy your old setup into Salesforce
- You expect every field to match perfectly
-
Why it's bad:
- Salesforce works differently
- Some things don't fit the same way
-
What happens:
- You write rules that can't change easily
- You don't plan for updates
-
Why it's bad:
- If something changes, everything breaks
- Fixing it takes a long time
-
What happens:
- You move everything all at once
- You skip checking if things match
-
Why it's bad:
- Relationships between records get lost
- Mistakes are hard to find later
-
What happens:
- You send too much data at once
- You don't split it into smaller parts
-
Why it's bad:
- Salesforce says 'too much!' and stops
- Your move fails halfway through
-
What happens:
- You don't check if the data is right
- You skip practice runs
-
Why it's bad:
- Mistakes sneak in
- You don't notice until it's too late
-
What happens:
- You keep using your old way of thinking
- You don't learn Salesforce's tools
-
Why it's bad:
- Things don't work the way you expect
- You miss out on helpful features
- BS with or MS in Computer Science or related technical field
- At least 8+ years of engineering experience in global software development and deployment
- Must have 4+ years of experience with SFDC platform and partner ecosystem
- Played the role of a Technical lead in 1-2 SFDC projects
- Thorough knowledge of SFDC. Well versed in configuration, customization and Integration
- Must be Salesforce Certified Developer or Salesforce Certified Architect
- Knowledge of Heroku/AWS
- Experience working with large scale enterprise organization with Front/Back Office
- Experience with GIT
- Interaction with Client’s key Business and Technical stakeholder for Solution Designing and Architecture
- Proven ability to manage and resolve complex and ambiguous technical issues
- Creativity & Critical Thinking
- Excellent verbal and written communication skills
- https://www.upwork.com/o/jobs/browse/?q=visualforce
- https://www.upwork.com/o/jobs/browse/t/0/skill/salesforce-com/?client_hires=0&duration_v3=months&sort=recency&workload=as_needed
- https://www.reddit.com/r/salesforce/comments/9nby0z/cant_use_mason_frank_to_find_job_is_there_a_trick/
- https://www.pacific.edu/about-pacific/administrationoffices/office-of-the-provost/about-the-office-of-the-provost/crm-services/crm-faq.html
- https://www.pacific.edu/about-pacific/administrationoffices/office-of-the-provost/about-the-office-of-the-provost/crm-services/crm-training-materials.html
- https://trailhead.salesforce.com/content/learn/modules/postman-api-client/send-api-calls
- https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/intro_curl.htm
- https://trailhead.salesforce.com/content/learn/projects/quick-start-connect-postman-to-salesforce/set-up-your-org
url:servlet ext:pdf site:salesforce.com
- https://status.salesforce.com/
- https://www.sundoginteractive.com/blog/salesforces-apex-runtime-design
- https://engineering.salesforce.com/how-a-new-ai-architecture-unifies-1000-sources-and-100-million-rows-in-5-minutes/
- https://engineering.salesforce.com/meet-the-all-stars-alex-dimitropoulos-2cfea6b73abb
- https://help.salesforce.com/articleView?id=000268571&type=1&language=en_US
- https://help.salesforce.com/articleView?id=000249086&type=1&language=en_US
- https://releasenotes.docs.salesforce.com/en-us/winter19/release-notes/rn_apex_inherited_sharing.htm
- https://help.salesforce.com/articleView?id=apex_hammer_execution_status.htm&type=0
- https://help.salesforce.com/servlet/servlet.FileDownload?file=015300000034eqiAAA
- https://help.salesforce.com/servlet/servlet.FileDownload?file=0150M0000041B37QAE
- https://help.salesforce.com/servlet/servlet.FileDownload?file=0150M0000041d62QAA
- https://help.salesforce.com/servlet/servlet.FileDownload?file=0150M0000041asDQAQ
- https://help.salesforce.com/servlet/servlet.FileDownload?file=0150M0000041aWvQAI
- https://help.salesforce.com/servlet/servlet.FileDownload?file=0150M000002pDGRQA2
- https://help.salesforce.com/servlet/servlet.FileDownload?file=0150M000002pDELQA2
- https://help.salesforce.com/servlet/servlet.FileDownload?file=0150M000002pDH0QAM
- https://help.salesforce.com/servlet/servlet.FileDownload?file=0150M000002pDEzQAM
- https://help.salesforce.com/servlet/servlet.FileDownload?file=0150M000002yIWjQAM
- https://help.salesforce.com/servlet/servlet.FileDownload?file=0150M000002pBVEQA2
- https://help.salesforce.com/servlet/servlet.FileDownload?file=0150M0000041B37QAE
- https://help.salesforce.com/servlet/servlet.FileDownload?file=0150M0000041d5xQAA
- https://help.salesforce.com/servlet/servlet.FileDownload?file=0150M000002pDI8QAM
- https://www.youtube.com/watch?v=IxjRysLXre8
- https://developer.salesforce.com/docs/atlas.en-us.232.0.api.meta/api/sforce_api_calls_query.htm#topic-title
- https://developer.salesforce.com/docs/atlas.en-us.232.0.api.meta/api/sforce_api_partner_queries.htm
- https://www.forcetalks.com/salesforce-topic/what-are-enterprise-and-partner-wsdl-in-salesforce/
- https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/sample_query_calls.htm
- https://github.com/salesforce/grammaticus/wiki/Entity-Definition
- https://resources.docs.salesforce.com/sfdc/pdf/salesforce_data_loader.pdf
- https://developer.salesforce.com/page/Using_Data_Loader_from_the_command_line
- https://developer.salesforce.com/page/Stylesheets_and_S-Controls_Best_Practice_Guide
- https://resources.docs.salesforce.com/186/latest/en-us/sfdc/pdf/salesforce_winter14_release_notes.pdf
- https://www.forcetalks.com/blog/automate-salesforce-data-import-export-using-data-loader-cli
- https://resources.docs.salesforce.com/218/latest/en-us/sfdc/pdf/salesforce_content_delivery_cheatsheet.pdf
- https://success.salesforce.com/ideaView?id=0873A0000003SY2QAM
- https://help.salesforce.com/articleView?id=collab_files_searching.htm&type=5
- https://help.salesforce.com/articleView?id=docs_def.htm&type=5
- https://help.salesforce.com/articleView?id=docs_home.htm&type=5
- https://help.salesforce.com/articleView?id=flow_troubleshoot_email.htm&type=5
- https://help.salesforce.com/articleView?id=flow_distribute_runtime.htm&type=5
- https://help.salesforce.com/articleView?id=flow_build_extend_lc_screen.htm&type=5
- https://releasenotes.docs.salesforce.com/en-us/summer19/release-notes/rn_forcecom_flow.htm
- https://releasenotes.docs.salesforce.com/en-us/summer19/release-notes/rn_forcecom_flow_flow_builder.htm
- https://www.keynodesolutions.com/blog/salesforce-automation-with-flow/
- https://help.salesforce.com/articleView?id=bi_explorer_add_action_to_object.htm&type=5
- https://www.suretysystems.com/insights/salesforce-lightning-object-creator/
- https://www.forbes.com/sites/jasonbloomberg/2018/07/30/low-codeno-code-hpapaas-heres-what-everybody-is-missing/
- https://admin.salesforce.com/salesforce-admin-podcast
- https://admin.salesforce.com/posts
- https://admin.salesforce.com/lightning-champions
- https://admin.salesforce.com/flowbuilder
- https://help.salesforce.com/articleView?id=salesforcea_assign_license.htm&type=5
- https://help.salesforce.com/articleView?id=notes_considerations.htm&type=5
- https://developer.salesforce.com/blogs/developer-relations/2013/07/five-essentials-for-new-salesforce-platform-developers.html
- https://success.salesforce.com/featuredGroupDetail?id=a1z3A000007SBrQQAW#a0L3000000RuJKwEAN
- https://developer.salesforce.com/events/webinars/
- https://help.salesforce.com/articleView?id=000214805&language=en_US&type=1
- https://help.salesforce.com/articleView?id=lex_find_your_way_around_setup.htm&type=5
- https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_anonymous_block.htm
- https://admin.salesforce.com/insight-be-a-builder
- https://admin.salesforce.com/the-value-of-having-a-dedicated-salesforce-integration-user
- https://help.salesforce.com/articleView?id=search_index_considerations.htm&type=5
- https://cloud4good.com/announcements/audit-trail-hidden-gem/
- https://help.salesforce.com/articleView?id=approval_history_reports.htm&type=5
- https://admin.salesforce.com/salesforce-csi-uncovering-previously-built
- https://starter-kit-demo.herokuapp.com/
- https://sfswitch.herokuapp.com/
- https://salesforce-elf.herokuapp.com/
- https://json2apex.herokuapp.com/
- https://sforgcompare.herokuapp.com/
- https://orgdoctor.herokuapp.com/
- https://openidconnect.herokuapp.com/
- http://json-schema-tester.herokuapp.com
- https://lightning-linter.herokuapp.com/
- https://githubsfdeploy.herokuapp.com/
- https://sfdatacompare.herokuapp.com/
- https://salesforce-webhook-creator.herokuapp.com/
- https://kbapps2.herokuapp.com/
- https://soqlbuilder.herokuapp.com/
- https://force-cli.herokuapp.com/
- https://www.rosettacode.org/wiki/Category:Apex
- https://developer.salesforce.com/page/A_Brief_Overview_of_the_Apex_Language
- https://resources.docs.salesforce.com/sfdc/pdf/dbcom_apex_language_reference.pdf?major=178
- https://github.com/forceworkbench/forceworkbench/wiki
- https://developer.salesforce.com/blogs/2018/05/summer18-rethink-trigger-logic-with-apex-switch.html
- https://github.com/forcedotcom/idecore/blob/master/com.salesforce.ide.ui.editors/config/apexModel.xml#L4128
- https://developer.salesforce.com/blogs/developer-relations/2013/06/building-conditional-page-layouts.html
- http://www.salesforce.com/us/developer/docs/api90/Content/sforce_api_calls_soql_bnf_notation.htm
- https://www.forcetalks.com/salesforce-topic/how-to-show-java-script-variables-on-a-salesforce-visualforce-page/
- https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_dynamic_vf_components_implementation.htm
- https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/expr_source.htm
- https://www.developerforce.com/guides/Visualforce_in_Practice.pdf
- https://developer.salesforce.com/page/Apex_Wiki
- https://developer.salesforce.com/page/Apex_Code:_The_Basics
- https://github.com/forcedotcom/apex-tmLanguage/blob/master/src/apex.tmLanguage.yml
- TextMate Grammar: apex.tmLanguage.yml
- Atom IDE Grammar: apex.cson
- ANTLR Grammar: apex.g4
- Vim plugin: vim-force.com/force.com.txt at master · neowit/vim-force.com
- Did you know Apex has a new compiler?
https://help.salesforce.com/articleView?id=code_dev_console_checkpoints_overlaying_soql.htm&type=5 https://trailhead.salesforce.com/en/content/learn/projects/quick-start-apex-coding-for-admins/instantiate-and-invoke https://help.salesforce.com/articleView?id=collab_files_connect_share.htm&type=5
- https://help.salesforce.com/s/articleView?id=sf.connected_app_create_api_integration.htm
- https://help.salesforce.com/s/articleView?id=sf.nc_create_edit_oath_browser_ext_cred.htm
- https://trailhead.salesforce.com/users/strailhead/trailmixes/architect-identity-and-access-management
- https://help.salesforce.com/articleView?id=sf.sso_saml_assertion_examples.htm
- https://help.salesforce.com/articleView?id=000221207&type=1
- https://help.salesforce.com/articleView?id=design_your_app.htm&type=5
- https://help.salesforce.com/articleView?id=000230807&type=1&language=en_US
- https://help.salesforce.com/articleView?id=identity_provider_examples_3p_adfs.htm
- https://success.salesforce.com/issues_index?tag=Authentication
- https://help.salesforce.com/articleView?id=code_inbound_email.htm&type=5
- https://help.salesforce.com/articleView?id=000193434&language=en_US&type=1
- https://help.salesforce.com/articleView?id=code_email_services.htm&type=5
- https://engineering.salesforce.com/metadata-software-the-way-you-want-it-2367b179558d
- https://help.salesforce.com/articleView?id=000273888&type=1&language=en_US
- https://medium.com/inside-the-salesforce-ecosystem/forbidden-secrets-of-the-metadata-api-c38208e9a818
- http://sfdcsrini.blogspot.com/2014/11/dynamic-apex-in-salesforce.html
- https://blog.jeffdouglas.com/2011/10/20/getting-salesforce-field-metadata-the-easy-way/
- https://success.salesforce.com/ideaview?id=08730000000GzMwAAK
- https://developer.salesforce.com/blogs/developer-relations/2008/12/using-the-metadata-api-to-retrieve-picklist-values.html
- https://developer.salesforce.com/forums/?id=9060G0000005UXVQA2
- https://www.sixteen-nine.net/2016/06/14/4-reasons-why-retail-should-adopt-omni-channel-digital-signage/
- https://ecommercenews.eu/european-countries-approach-omni-channel-differently/
- https://blog.feedeo.io/2017/05/09/5-inspiring-companies-doing-omni-channel-right/
- https://www.salesforce.com/blog/2017/12/multi-channel-support
- https://www.salesforce.com/blog/2018/08/customer-experience-personalization-state-marketing-report
- https://www.salesforce.com/blog/2016/07/content-marketing-mistakes
- https://resources.docs.salesforce.com/sfdc/pdf/service_presence_administrators.pdf
- https://resources.docs.salesforce.com/sfdc/pdf/service_presence_developer_guide.pdf
- https://technoplanet.com/my-green-it-day/
- https://developer.salesforce.com/blogs/developer-relations/2013/05/object-type-comparison-using-apex.html
- https://help.salesforce.com/articleView?id=How-to-find-Object-Type-from-Record-ID-Prefix&language=en_US&type=1
- https://resources.docs.salesforce.com/latest/latest/en-us/sfdc/pdf/integration_patterns_and_practices.pdf
- https://resources.docs.salesforce.com/latest/latest/en-us/sfdc/pdf/salesforce_large_data_volumes_bp.pdf
- https://resources.docs.salesforce.com/latest/latest/en-us/sfdc/pdf/sharing_architecture.pdf
- https://resources.docs.salesforce.com/latest/latest/en-us/sfdc/pdf/salesforce_visualforce_best_practices.pdf
- https://resources.docs.salesforce.com/latest/latest/en-us/sfdc/pdf/salesforce1_guide.pdf
- https://developer.salesforce.com/blogs/engineering/2014/11/salesforce-anti-patterns-a-cautionary-tale.html
- https://resources.docs.salesforce.com/212/latest/en-us/sfdc/pdf/salesforce_developer_environment_tipsheet.pdf
- title:not title:lightning site:help.salesforce.com
- https://developer.salesforce.com/docs/atlas.en-us.api_cti.meta/api_cti/sforce_api_cti_intro_lightning_vs_classic_methods.htm
- https://developer.salesforce.com/docs/atlas.en-us.api_console.meta/api_console/sforce_api_console_js_lightning_parity.htm
- https://releasenotes.docs.salesforce.com/en-us/summer18/release-notes/rn_files_replacing_flash.htm
- https://www.jitendrazaa.com/blog/salesforce/using-salesforcedx-sfdx-with-non-scratch-orgs/
- https://github.com/afawcett/dependencies-cli/wiki/How-to-untangle-an-Org-into-Packages
- https://forcedotcom.github.io/salesforcedx-vscode/articles/getting-started/migrate-from-forcecom-ide
- https://www.codescience.com/blog/2018/auto-generate-package-xml
- https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/vf_dev_best_practices_slds_lightningstylesheets.htm
- https://resources.docs.salesforce.com/sfdc/pdf/lex.pdf
- https://trailhead.salesforce.com/en/content/learn/modules/workflow_migration/workflow_migration_intro
- https://help.salesforce.com/articleView?id=lex_aloha_comparison.htm&type=5
- https://help.salesforce.com/articleView?id=lex_considerations_intro.htm&type=5
- https://help.salesforce.com/articleView?id=lex_gaps_limitations_service.htm&type=5
- https://help.salesforce.com/articleView?id=lex_gaps_limitations_security.htm&type=5
- https://www.salesforce.com/blog/2016/10/you-should-use-standard-objects
- https://releasenotes.docs.salesforce.com/en-us/winter19/release-notes/getstart_browser_aloha.htm
- https://releasenotes.docs.salesforce.com/en-us/summer18/release-notes/rn_files_file_previews_upgrade.htm
- https://help.salesforce.com/articleView?id=approval_process_viewer_req.htm&type=5
- https://resources.docs.salesforce.com/214/latest/en-us/sfdc/pdf/salesforce_technical_requirements.pdf
- https://www.salesforce.com/content/dam/web/en_us/www/documents/platform/salesforce-only-in-lightning-features.pdf
- https://help.salesforce.com/articleView?id=getstart_browser_aloha.htm&type=5
- https://github.com/forcedotcom/salesforcedx-vscode/pull/152/commits
- https://github.com/forcedotcom/salesforcedx-vscode/issues/929
- https://salesforce.stackexchange.com/questions/231715/how-to-run-apex-anonymous-code-from-visual-studio-code
- https://developer.salesforce.com/blogs/developer-relations/2013/07/selecting-random-numbers-and-records-on-the-force-com-platform-part-1.html
- https://www.salesforce.com/blog/2012/04/include-keyboard-interactions-in-your-design-specifications.html
- https://www.skuid.com/blog/ibm-re-establishing-design-centered-company/
- http://www.dreamhouseapp.io
- https://developer.salesforce.com/page/Cheat_Sheets
- https://developer.salesforce.com/page/Wiki
- http://developer.force.com/codeshare/
- https://developer.secure.force.com/cookbook/
- https://developer.secure.force.com/cookbook/recipe/storing-form-field-values-with-the-apex-cookie-class
- https://developer.salesforce.com/page/Packaging
- https://developer.salesforce.com/page/Apex_Enterprise_Patterns_-_Separation_of_Concerns
- https://help.salesforce.com/articleView?id=sso_tips.htm&type=5
- https://developer.salesforce.com/page/Best_Practice:_Iterate_over_Large_Data_Sets
- https://resources.docs.salesforce.com/216/latest/en-us/sfdc/pdf/collaboration.pdf
- https://resources.docs.salesforce.com/198/latest/en-us/sfdc/pdf/salesforce_formulas_cheatsheet.pdf
- https://resources.docs.salesforce.com/sfdc/pdf/salesforce_large_data_volumes_bp.pdf
- http://resources.docs.salesforce.com/rel1/doc/en-us/static/pdf/identity_connect_impl_guide.pdf
- https://developer.salesforce.com/page/Apex_Code_Best_Practices
- https://developer.salesforce.com/page/Apex_Design_Patterns
- https://developer.salesforce.com/page/Apex_Code:_The_Basics
- https://developer.salesforce.com/page/Methods
- https://help.salesforce.com/articleView?id=000004186&type=1
- https://resources.docs.salesforce.com/212/latest/en-us/sfdc/pdf/salesforce_security_impl_guide.pdf
- https://resources.docs.salesforce.com/212/latest/en-us/sfdc/pdf/salesforce_platform_portal_implementation_guide.pdf
- https://resources.docs.salesforce.com/sfdc/pdf/dbcom_apex_language_reference.pdf?major=178
- https://resources.docs.salesforce.com/210/latest/en-us/sfdc/pdf/custom_metadata_types_impl_guide.pdf
- https://developer.salesforce.com/blogs/engineering/2015/05/developer-practices-checklist.html
- https://resources.docs.salesforce.com/212/latest/en-us/sfdc/pdf/salesforce_visualforce_best_practices.pdf
- https://help.salesforce.com/servlet/servlet.FileDownload?file=015300000037hrbAAA
- https://developer.salesforce.com/blogs/2017/09/error-handling-best-practices-lightning-apex.html /page/Best_Practice:_Use_of_the_Limits_Apex_Methods_to_avoid_Hitting_Governor_Limits
- https://salesforce.stackexchange.com/questions/377292/send-data-to-external-system-on-bulk-update/377294#377294
- https://resources.docs.salesforce.com/210/latest/en-us/sfdc/pdf/limits_limitations.pdf
- https://help.salesforce.com/articleView?id=000272809&type=1&language=en_US
- https://developer.salesforce.com/page/Best_Practice:_Use_future_Appropriately
- https://developer.salesforce.com/page/Best_Practices_for_Salesforce_to_Salesforce
- https://help.salesforce.com/articleView?id=Best-Practices-to-Avoid-Excessive-SOAP-and-REST-API-DML&language=en_US&type=1
- https://help.salesforce.com/articleView?id=security_transactions_best_practices.htm&type=5
- https://help.salesforce.com/articleView?id=vpm_considerations_bestpractices.htm&type=5
- https://help.salesforce.com/articleView?id=business_network_mapping_best_practices.htm&type=5
- https://help.salesforce.com/articleView?id=domain_name_guidelines.htm&type=0
- https://help.salesforce.com/articleView?id=process_considerations_design_bestpractices.htm&type=5
- https://help.salesforce.com/articleView?id=000001053&type=1
- https://help.salesforce.com/articleView?id=How-to-Platform-Backup-and-Manage-Salesforce-Data&language=en_US&type=1
- https://help.salesforce.com/articleView?id=000176287&type=3
- https://www.salesforce.com/blog/2017/03/tools-build-secure-online-presence.html
- https://salesforce.stackexchange.com/questions/156548/upsert-vs-update-vs-insert
- https://resources.docs.salesforce.com/212/latest/en-us/sfdc/pdf/object_reference.pdf
- https://resources.docs.salesforce.com/206/latest/en-us/sfdc/pdf/salesforce_field_names_reference.pdf
- https://resources.docs.salesforce.com/sfdc/pdf/salesforce_development_lifecycle.pdf
- https://resources.docs.salesforce.com/sfdc/pdf/draes.pdf
- https://resources.docs.salesforce.com/sfdc/pdf/salesforce1_guide.pdf
- http://resources.docs.salesforce.com/sfdc/pdf/salesforce_vpm_implementation_guide.pdf
- https://resources.docs.salesforce.com/sfdc/pdf/salesforce1_url_schemes.pdf
- https://resources.docs.salesforce.com/212/latest/en-us/sfdc/pdf/sfdx_ide2.pdf
- https://resources.docs.salesforce.com/212/latest/en-us/sfdc/pdf/salesforce_iot_api.pdf
- https://resources.docs.salesforce.com/sfdc/pdf/api_meta.pdf
- https://resources.docs.salesforce.com/sfdc/pdf/api_tooling.pdf
- https://resources.docs.salesforce.com/210/latest/en-us/sfdc/pdf/api_streaming.pdf
- https://resources.docs.salesforce.com/210/latest/en-us/sfdc/pdf/platform_events.pdf
- https://resources.docs.salesforce.com/214/latest/en-us/sfdc/pdf/field_service_dev.pdf
- https://resources.docs.salesforce.com/214/latest/en-us/sfdc/pdf/collaboration_admin.pdf
- https://resources.docs.salesforce.com/218/latest/en-us/sfdc/pdf/case_feed_dev_guide.pdf
- http://resources.docs.salesforce.com/216/16/en-us/sfdc/pdf/salesforce_lead_implementation_guide.pdf
- https://resources.docs.salesforce.com/202/latest/en-us/sfdc/pdf/salesforce_forecastuser_cheatsheet.pdf
- https://resources.docs.salesforce.com/sfdc/pdf/salesforce_mobile_push_notifications_implementation.pdf
- https://resources.docs.salesforce.com/sfdc/pdf/apex_ajax.pdf
- https://help.salesforce.com/servlet/servlet.FileDownload?file=0150M0000041NEVQA2
- https://help.salesforce.com/servlet/servlet.FileDownload?file=015300000034eqiAAA
- https://help.salesforce.com/articleView?id=000212993&type=1
- https://help.salesforce.com/servlet/servlet.FileDownload?file=015300000037D0bAAE
- https://help.salesforce.com/articleView?id=pages_custom_components_edit.htm&type=5
- https://help.salesforce.com/articleView?id=sites_admin_preview.htm&type=5
- https://help.salesforce.com/articleView?id=siteforce_preview.htm&type=5
- https://help.salesforce.com/articleView?id=pages_creating.htm&type=5
- https://help.salesforce.com/articleView?id=files_preview.htm&type=5
- https://help.salesforce.com/articleView?id=community_designer_preview.htm&type=5
- https://help.salesforce.com/articleView?id=collab_attach_file_reference.htm&type=5
- https://help.salesforce.com/articleView?id=admin_files_use_quip_component.htm&type=5
- https://help.salesforce.com/articleView?id=admin_files_quip_add_lightning_component.htm&type=5
- https://developer.salesforce.com/docs/atlas.en-us.214.0.object_reference.meta/object_reference/field_types.htm
- https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_classes_exception_methods.htm?search_text=valueof
- https://help.salesforce.com/articleView?id=faq_apex_classes_triggers.htm&type=5
- https://developer.salesforce.com/blogs/developer-relations/2013/05/object-type-comparison-using-apex.html
- https://help.salesforce.com/articleView?id=000005995&language=en_US&type=1 (Record ID Prefixes)
- https://developer.salesforce.com/blogs/2018/03/integrating-hangouts-chat-salesforce.html
- http://coenraets.org/blog/2016/01/slack-salesforce-integration/
- https://developer.salesforce.com/blogs/developer-relations/2012/02/quick-tip-public-restful-web-services-on-force-com-sites.html
- https://help.salesforce.com/articleView?id=iot_set_up_prereqs_marketing_cloud.htm&type=5
- https://devcenter.heroku.com/articles/app-webhooks-schema
- https://github.com/quip/quip-api/tree/master/samples/webhooks
- https://hackerone.com/salesforce
- https://success.salesforce.com/issues_view?id=a1p30000000T0tvAAC&title=when-performing-several-soql-queries-from-different-apex-classes-no-such-column-lastvieweddate-on-entity-entity-name-is-thrown
- https://success.salesforce.com/issues_index?page=1&status=nofix&tag=Apex
- https://success.salesforce.com/issues_index?page=3&status=nofix&tag=Platform
- https://success.salesforce.com/issues_view?id=a1p3A000000mCHfQAM
- https://success.salesforce.com/ideaview?id=0873000000081cUAAQ
- https://success.salesforce.com/issues_index?tag=Lightning
- https://success.salesforce.com/issues_index?tag=Live%20Agent
- https://help.salesforce.com/articleView?id=Lightning-Knowledge-Migration-Tool-FAQ&language=en_US&type=1
- https://success.salesforce.com/issues_view?Id=a1p3A000000312O
- https://help.salesforce.com/articleView?id=Named-credential-oauth-token-doesn-t-get-automatically-refreshed-with-Salesforce-SOAP-API-end-point&language=en_US&type=1
- https://developer.salesforce.com/blogs/developer-relations/2017/04/salesforce-data-security-model-explained-visually.html
- https://help.salesforce.com/articleView?id=000274941&language=en_US&type=1
- https://github.com/salesforce/vulnreport/blob/master/vulntypeExamples/salesforce.xml
- https://privacyscore.org/site/17398/json/
- https://help.salesforce.com/articleView?id=fields_validation_considerations.htm&type=5
- https://help.salesforce.com/articleView?id=console_lex_limitations.htm&type=5
- https://success.salesforce.com/answers?id=90630000000DMICAA4
- http://resources.docs.salesforce.com/sfdc/pdf/salesforce_app_limits_cheatsheet.pdf
- https://developer.salesforce.com/blogs/2018/07/whats-new-with-locker-service.html
- https://developer.salesforce.com/blogs/tech-pubs/2015/09/login-ip-ranges-security.html
- https://developer.salesforce.com/page/Secure_Coding_WebSockets
- https://developer.salesforce.com/page/Secure_Coding_Arbitrary_Redirect
- https://developer.salesforce.com/page/Secure_Coding_Cross_Site_Scripting#Input_Filtering
- https://developer.salesforce.com/blogs/engineering/2014/08/understanding-bulk-salesforce1-platform.html
- https://developer.salesforce.com/blogs/engineering/2014/09/apex-performance-troubleshooting.html
- https://resources.docs.salesforce.com/214/latest/en-us/sfdc/pdf/secure_coding.pdf
- https://developer.salesforce.com/docs/atlas.en-us.salesforce_app_limits_cheatsheet.meta/salesforce_app_limits_cheatsheet/salesforce_app_limits_platform_apexgov.htm#!
- https://developer.salesforce.com/blogs/engineering/2015/09/when-not-to-use-machine-learning.html
- https://help.salesforce.com/articleView?id=custommetadatatypes_relationships_limits.htm&type=5
- https://developer.salesforce.com/forums/?id=906F0000000BWZ0IAO
- AI
- http://certification.salesforce.com/sitemap
- https://www.oreilly.com/library/view/salesforce-platform-app/9781785283697/
- http://certification.salesforce.com/OnlineProctoringGuide-WindowsOperatingSystem.pdf
- http://certification.salesforce.com/OnlineProctoringGuide-MacintoshOperatingSystem.pdf
- https://www.salesforce.com/dreamforce/certification/
- http://salesforcememo.com/2017/09/18/how-to-prepare-for-and-pass-identity-and-access-management-designer-exam/
- https://success.salesforce.com/ideaView?id=08730000000DltWAAS
- http://certification.salesforce.com/certification-detail-print?conId=003G0000017EBHmIAO
- https://trailhead.salesforce.com/credentials/developeroverview
- https://trailhead.salesforce.com/help?article=Link-Your-Trailhead-and-Webassessor-Accounts
- https://developer.salesforce.com/blogs/2018/01/getting-certified-adventure-documentation-trailhead.html
- http://image.mail.salesforce.com/lib/fe9d1c727563047c75/m/1/b694a346-3f5e-478d-acaa-79069b4024ac.pdf
- https://admin.salesforce.com/preparing-certification-exam
- https://www.shellblack.com/training-and-certification/get-certified-eight-free-salesforce-training-resources/
- https://quizlet.com/87821122/salesforce-advanced-developer-dev-501-apex-coding-10-flash-cards/
- https://www.linkedin.com/pulse/difference-between-salesforce-administrator-developer-jenny-bamber/
- https://www.safaribooksonline.com/library/view/learning-salesforce-lightning/9781787124677/
- https://help.salesforce.com/articleView?id=pardot_admin_ampsea_parent.htm&type=5
- https://admin.salesforce.com/blog/2021/5-steps-to-setting-up-your-salesforce-org
- https://help.salesforce.com/articleView?id=domain_mgmt_naked_domains.htm&type=5
- https://help.salesforce.com/articleView?id=domain_mgmt_add.htm&type=5
- https://help.salesforce.com/articleView?id=siteforce_publish_offline.htm&type=5
- https://help.salesforce.com/articleView?id=000228631&language=en_US&type=1
- https://help.salesforce.com/articleView?id=000230069&language=en_US&type=1
- https://help.salesforce.com/articleView?id=000230809&language=en_US&type=1
- https://help.salesforce.com/articleView?id=siteforce_domains_map.htm&type=5
- https://help.salesforce.com/articleView?id=faq_campaigns.htm&type=5
- https://developer.salesforce.com/page/An_Introduction_To_Email_Services_on_Force.com
- https://help.salesforce.com/articleView?id=000006731&language=en_US&type=1
- https://help.salesforce.com/articleView?id=mc_overview_content_and_email_creation_tools.htm&type=5
- https://resources.docs.salesforce.com/198/latest/en-us/sfdc/pdf/salesforce_HTMLtemplates_cheatsheet.pdf
- https://help.salesforce.com/articleView?id=email_logs_format.htm&type=5
- https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/sforce_api_objects_allowedemaildomain.htm
- https://help.salesforce.com/articleView?id=000071170&type=1&language=en_US
- https://help.salesforce.com/articleView?id=000228273&type=1&language=en_US
- https://help.salesforce.com/articleView?id=000250391&type=1&language=en_US
- https://help.salesforce.com/articleView?id=000240875&type=1&language=en_US
- https://help.salesforce.com/articleView?id=000232181&type=1&language=en_US
- https://help.salesforce.com/articleView?id=000193813&type=1&language=en_US
- https://help.salesforce.com/articleView?id=000004032&type=1&language=en_US
- https://help.salesforce.com/articleView?id=000188545&type=1&language=en_US
- https://help.salesforce.com/articleView?id=000233055&type=1&language=en_US
- https://help.salesforce.com/articleView?id=emailadmin_email_relay_considerations.htm&type=5
- https://help.salesforce.com/articleView?id=emailadmin_send_through_salesforce_setup.htm&type=5
- https://help.salesforce.com/articleView?id=emailadmin_deliverability.htm&type=5
- https://help.salesforce.com/articleView?id=emailadmin_email2salesforce.htm&type=5
- https://help.salesforce.com/articleView?id=code_email_services_editing.htm&type=5
- https://success.salesforce.com/ideaview?id=08730000000BrGmAAK
- https://success.salesforce.com/issues_view?id=a1p3A0000018BJAQA2
- https://success.salesforce.com/answers?id=90630000000CwWsAAK
- https://success.salesforce.com/answers?id=9063A000000lMm8QAE
- https://help.salesforce.com/articleView?id=000270493&type=1&language=en_US
- https://help.salesforce.com/articleView?id=000133743&type=1&language=en_US
- https://success.salesforce.com/answers?id=9063A000000iVgxQAE
- https://success.salesforce.com/answers?id=906300000010xSIAAY
- https://success.salesforce.com/ideaView?id=08730000000l03uAAA
- https://help.salesforce.com/articleView?id=000239741&type=1&language=en_US
- https://help.salesforce.com/articleView?id=000268564&type=1&language=en_US
- https://www.salesforce.com/products/marketing-cloud/best-practices/html-email-tips/
- https://www.salesforce.com/ca/blog/2015/01/mobile-friendly-email.html
- https://help.salesforce.com/articleView?id=email_my_email_2_sfdc_considerations.htm&type=0
- https://help.salesforce.com/articleView?id=email_my_email_2_sfdc_guidelines.htm&type=0
- https://help.salesforce.com/articleView?id=My-email-looks-bad-in-Outlook&language=en_US&type=1
- https://help.salesforce.com/articleView?id=emailadmin_send_email_from_salesforce_options.htm&type=5
- https://help.salesforce.com/articleView?id=admin_viewing_emailtemplates.htm&type=5
- https://help.salesforce.com/articleView?id=code_email_services_editing.htm&type=0
- https://success.salesforce.com/ideaView?id=087300000007uOSAAY
- https://help.salesforce.com/articleView?id=000199287&type=1
- https://help.salesforce.com/articleView?id=000187156&language=en_US&type=1
- https://developer.salesforce.com/blogs/engineering/2013/04/improving-your-case-management-response-time-with-sms.html
- https://help.salesforce.com/articleView?id=mc_es_perform_subscriber_preview_test_send.htm&type=5
- https://resources.docs.salesforce.com/214/latest/en-us/sfdc/pdf/salesforce_mobile_push_notifications_implementation.pdf
- https://stackoverflow.com/questions/43885939/visualforce-email-template-unit-test
- https://success.salesforce.com/answers?id=90630000000gyFzAAI
- https://help.salesforce.com/articleView?id=000230807&language=en_US&type=1
- https://help.salesforce.com/articleView?id=emailadmin_email_relay_considerations.htm&type=5
- https://help.salesforce.com/articleView?id=emailadmin_setup_dkim_key.htm&type=5
- https://help.salesforce.com/articleView?id=emailadmin_considerations_dkim.htm&type=5
- https://help.salesforce.com/articleView?id=emailadmin_create_dkim_key.htm&type=5
- https://help.salesforce.com/articleView?id=emailadmin_create_secure_dkim.htm&type=5
- https://help.salesforce.com/articleView?id=emailadmin_advantage_dkim.htm&type=5
- https://help.salesforce.com/articleView?id=email_logs_format.htm&type=5
- https://help.salesforce.com/articleView?id=security_test_email_delivery.htm&type=5
- https://help.salesforce.com/articleView?id=mc_es_email_deliverability_in_china.htm&type=5
- https://help.salesforce.com/articleView?id=quotes_create_pdf_selected_template.htm&type=5
- https://help.salesforce.com/articleView?id=quotes_limitations.htm&type=5
- https://help.salesforce.com/articleView?id=quotes_create_pdf_selected_template.htm&type=5
- https://success.salesforce.com/Answer_rss
- https://appexchange.salesforce.com/services/xml/NewListings
- https://developer.salesforce.com/forums/ForumsCategories
- https://github.com/developerforce/Force.com-Toolkit-for-Jasper
- https://help.salesforce.com/articleView?id=bi_setup_connected_app.htm&type=5
- https://help.salesforce.com/articleView?id=000004958&language=en_US&type=1
- https://developer.salesforce.com/blogs/developer-relations/2016/02/integrating-jasper-control-center-api-force-com.html
- https://partners.salesforce.com/s/education/general/Salesforce_IoT
- https://developer.salesforce.com/blogs/2018/05/the-making-of-the-robotics-ridge-at-trailheadx.html
- https://help.salesforce.com/articleView?id=remoteaccess_identity_iot.htm&type=5
- https://engineering.salesforce.com/meraki-rce-when-red-team-and-vulnerability-research-fell-in-love-9eeea8df531d
Samples
- title:developer.force.com site:salesforce.com
- developerforce salesforcelabs forcedotcom salesforceux site:github.com
- https://github.com/SalesforceSFDC/Apex/
- https://github.com/forcedotcom
- https://github.com/trailheadapps
- https://github.com/dreamhouseapp
- https://github.com/developerforce/LEXComponentsBundle
- https://github.com/developerforce/LightningContainerExamples
- https://github.com/SalesforceCommerceCloud/
- https://github.com/quip/quip-api
- https://github.com/salesforce-ux
- https://github.com/salesforce-ux/design-system-ui-kit
- https://github.com/salesforceidentity
- https://github.com/SalesforceFoundation
- https://github.com/SFDO-Tooling
- https://github.com/wilsonmar/Salesforce
- https://github.com/mulesoft?utf8=%E2%9C%93&q=&type=&language=css
- https://github.com/developerforce/lightning-app-builder-tutorial/blob/gh-page2/print.md
- https://developer.salesforce.com/page/Developing_Cloud_Apps_—_Coding_Optional
- https://developer.salesforce.com/page/Establish_Business_Logic
- https://developer.salesforce.com/index.php?title=Code_Samples&oldid=47216
- https://developer.salesforce.com/blogs/developer-relations/2017/03/weve-learned-building-field-service-lightning-best-practices-development.html
- https://developer.salesforce.com/blogs/developer-relations/2017/06/enhancing-workflows-weather-company-data-service.html
- https://developer.salesforce.com/blogs/developer-relations/2015/05/single-page-survey-application-visualforce-jquerymobile-knockout.html
- https://www.lynda.com/Salesforce-tutorials/Lightning-App-Builder/647654/673070-4.html
- https://www.lynda.com/Web-Development-tutorials/Understand-YAML/560344/590558-4.html
- https://www.lynda.com/CSS-tutorials/CSS-Animation/439683-2.html
- https://www.lynda.com/Adobe-Experience-Design-tutorials/What-AEM/503884/552802-4.html
- https://www.lynda.com/Visualforce-tutorials/Developing-Visualforce/172850-2.html#tab
- https://www.lynda.com/Visualforce-tutorials/Built-Apex-action-components/384724/428864-4.html#tab
"Hands-on Challenge" 500 site:trailhead.salesforce.com
- https://developer.salesforce.com/docs/
- https://developer.salesforce.com/docs/atlas.en-us.salesforce_pubs_style_guide.meta/salesforce_pubs_style_guide/glossary_master.htm
- https://developer.salesforce.com/page/Earlier_Reference_Documentation
- https://developer.salesforce.com/blogs/tech-pubs/2013/05/our-award-winning-documentation-and-videos.html
- http://www.salesforce.com/assets/pdf/misc/Salesforce-Open-Source.pdf
- https://www.salesforce.com/content/dam/web/en_us/www/documents/legal/misc/Commerce-Cloud-Open-Source.pdf
- https://www.salesforce.com/content/dam/web/en_us/www/assets/pdf/misc/SalesforceIQ-Open-Source.pdf
- http://documentation.auraframework.org/
- https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/debug_intro.htm
- https://developer.salesforce.com/page/Sample_SOAP_Messages
- https://developer.salesforce.com/blogs/developer-relations/2015/06/salesforce-soap-api-sample-wsdls.html
- https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/sforce_api_calls_query.htm
- https://success.salesforce.com/issues_index?tag=Performance
- https://help.salesforce.com/articleView?id=dev_understanding_global_variables.htm&type=5
- https://developer.salesforce.com/docs/atlas.en-us.api_tooling.meta/api_tooling/intro_api_tooling.htm
- https://developer.salesforce.com/page/Alert!_Salesforce_Event_Notification_Designs_for_Force.com_Apps
- https://developer.salesforce.com/page/Streaming_Real_Time_Data_into_Visualforce
- https://developer.salesforce.com/index.php?title=Data_Driven_Menu_with_jQuery
- https://developer.salesforce.com/blogs/developer-relations/2015/06/running-aura-app-heroku.html
- https://success.salesforce.com/issues_view?id=a1p300000008XKUAA2
- https://research.trust.salesforce.com/vulns/
- https://research.trust.salesforce.com
- https://engineering.salesforce.com/the-full-picture-on-http-2-and-hol-blocking-7f964b34d205
- https://resources.docs.salesforce.com/210/latest/en-us/sfdc/pdf/salesforce_single_sign_on.pdf
- https://developer.salesforce.com/blogs/developer-relations/2011/04/calling-the-rest-api-from-javascript-from-anywhere.html
- https://developer.salesforce.com/docs/atlas.en-us.noversion.mc-programmatic-content.meta/mc-programmatic-content/attachfile.htm
- https://developer.salesforce.com/page/Inside_OpenID_Connect_on_Force.com
- https://help.salesforce.com/articleView?id=data_sandbox_implementation_tips.htm&type=5
- https://help.salesforce.com/articleView?id=field_audit_trail.htm&type=5
- https://help.salesforce.com/articleView?id=working_with_global_publisher_layouts.htm&type=5
- https://help.salesforce.com/articleView?id=cs_about.htm&type=5
- https://help.salesforce.com/articleView?id=000198725&type=1
- https://help.salesforce.com/articleView?id=code_define_trigger.htm&type=5
- https://help.salesforce.com/articleView?id=admin_monitorsetup.htm&type=5
- https://help.salesforce.com/articleView?id=deploy_special_behavior.htm&type=5
- https://help.salesforce.com/articleView?id=data_sandbox_environments.htm&type=5
- https://help.salesforce.com/articleView?id=create_test_instance.htm&type=5
- https://help.salesforce.com/articleView?id=Updating-Hard-Coded-References-FAQ&type=1
- https://help.salesforce.com/articleView?id=changesets_about_components.htm&type=5
- https://help.salesforce.com/articleView?id=bi_limitations.htm&type=5
- https://help.salesforce.com/articleView?id=odata_reference.htm&type=5
- https://help.salesforce.com/articleView?id=bi_integrate_tranformation_overview.htm&type=5
- https://developer.salesforce.com/page/Protecting_Your_Data_in_the_Cloud
- https://developer.salesforce.com/page/Force.com_for_Google_App_Engine_User_Guide
- https://help.salesforce.com/articleView?id=000003652&type=1
- https://developer.salesforce.com/blogs/developer-relations/2014/11/salesforce-integration-architecture.html
- https://help.salesforce.com/articleView?id=000126966&type=1
- https://resources.docs.salesforce.com/204/latest/en-us/sfdc/pdf/salesforce_security_impl_guide.pdf
- https://developer.salesforce.com/docs/atlas.en-us.securityImplGuide.meta/securityImplGuide/salesforce_security_guide.htm
- https://developer.salesforce.com/page/Security_Review
- https://developer.salesforce.com/devcenter/security
- https://developer.salesforce.com/page/Security?language=en
- https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/sforce_api_om_outboundmessaging_security.htm
- https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_security_sharing_chapter.htm
- https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_classes_security.htm
- https://developer.salesforce.com/blogs/developer-relations/2017/04/salesforce-data-security-model-explained-visually.html
- https://developer.salesforce.com/page/An_Overview_of_Force.com_Security
- https://developer.salesforce.com/docs/atlas.en-us.salesforce_platform_portal_implementation_guide.meta/salesforce_platform_portal_implementation_guide/sites_security.htm
- https://partners.salesforce.com/s/education/appinnovators/Security_Review
- https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/security_csp.htm
- https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/apex_crud_fls.htm
- https://developer.salesforce.com/page/Security_Design_Resources
- https://developer.salesforce.com/blogs/engineering/2017/06/apex-metadata-api-security.html
- https://help.salesforce.com/articleView?id=000206497&type=1
- https://help.salesforce.com/articleView?id=pages_page_level_security.htm&type=5
- https://help.salesforce.com/articleView?id=000004410&language=en_US&type=1
- https://help.salesforce.com/articleView?id=code_package_security.htm&type=5
- https://help.salesforce.com/articleView?id=security_transactions_creating_classic.htm&type=5
- https://help.salesforce.com/articleView?id=user_security_token.htm&type=5
- https://help.salesforce.com/articleView?id=networks_security.htm&type=5
- https://help.salesforce.com/articleView?id=bi_security_datasets_row_level.htm&type=5
- https://help.salesforce.com/articleView?id=bi_security_datasets_predicate_considerations.htm&type=5
- https://help.salesforce.com/articleView?id=security_networkaccess.htm&type=0
- https://help.salesforce.com/articleView?id=siteforce_ip_set.htm&type=0
- https://help.salesforce.com/articleView?id=sites_public_access_settings.htm&type=0
- https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/components_lifecycle.htm
- http://developer.force.com/cookbook/recipe/using-jquery-in-a-visualforce-page
- https://developer.secure.force.com/cookbook/category/visualforce/recent
- https://developer.salesforce.com/page/Developing_Apps_with_jQuery
- https://developer.salesforce.com/blogs/developer-relations/2015/08/creating-jquery-application-using-rest-api.html
- https://developer.salesforce.com/blogs/developer-relations/2015/11/pk-chunking-techniques-massive-orgs.html
- https://developer.salesforce.com/blogs/developer-relations/2015/06/styling-css-component-bundle.html
- http://cloudyworlds.blogspot.com/2016/03/taking-your-lightning-components.html
- https://developer.salesforce.com/blogs/developer-relations/2017/01/lightning-visualforce-communication.html
- http://gopaldas.org/salesforce/lightning-console-limitations/
- https://www.slideshare.net/developerforce/migrating-visualforce-pages-to-lightning
- https://success.salesforce.com/
- https://developer.ibm.com/urbancode/plugindoc/ibmucd/salesforce/1-2/steps/
- https://tekslate.com/category/salesforce-crm/
- http://blogatsalesforce.blogspot.com/
- http://www.informit.com/articles/article.aspx?p=2164576&seqNum=4
- https://www.ibm.com/developerworks/data/library/techarticle/dm-0807deng/
- https://www.ibm.com/support/knowledgecenter/en/SSZJPZ_11.5.0/com.ibm.swg.im.iis.ds.entpak.salesf.doc/topics/SFExtractingdata.html
- https://developers.google.com/gdata/articles/salesforce
- https://helpx.adobe.com/sign/help/adobe_sign_for_salesforce_developer_guide.html
- https://developer.ibm.com/integration/blog/2016/03/18/integrating-with-salesforce-using-a-rest-api-created-in-ibm-integration-bus/
- https://www.sec.gov/Archives/edgar/data/1108524/000119312510004443/dex992.htm
- http://file.lacounty.gov/SDSInter/bos/supdocs/117363.pdf
- https://access.redhat.com/documentation/en-us/red_hat_jboss_fuse/6.1/html/apache_camel_component_reference/idu-salesforce
- https://www.linkedin.com/pulse/salesforce-security-review-my-3x-failure-dave-rasmussen/
- https://aws.amazon.com/blogs/apn/enabling-amazon-connect-with-salesforce-service-and-sales-cloud/
- https://trailhead.salesforce.com/modules/
- https://www.salesforce.com/ap/
- https://developer.salesforce.com/page/Multi_Tenant_Architecture
- http://ernestoolivares.com/interactivity/samples/TCOEquinix/docs/SaaS_Delivery_Guidebook_EQX_V1.1_(1).pdf
- https://www.tsgconsulting.co.uk/AcuCustom/Sitename/DAM/002/Managing_Testing_in_SFE.pdf
- https://salesforce.stackexchange.com/questions/159866/any-way-to-include-keyframes-in-lightning-component-css-file
- https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/quickstart_oauth.htm
- https://help.salesforce.com/articleView?id=remoteaccess_oauth_SAML_bearer_flow.htm&type=0
- https://help.salesforce.com/articleView?id=remoteaccess_using_userinfo_endpoint.htm&type=5
- https://developer.salesforce.com/blogs/developer-relations/2014/01/python-and-the-force-com-rest-api-simple-simple-salesforce-example.html
- http://peterknolle.com/file-upload-lightning-component/
- https://developer.salesforce.com/blogs/developer-relations/2017/05/build-lightning-file-uploader-component.html
- https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/aura_compref_lightning_fileUpload.htm
- https://help.salesforce.com/articleView?id=search_configure_query_solr_federated_search.htm&type=0
- https://help.salesforce.com/articleView?id=integrate_what_is_api.htm&type=0
- https://help.salesforce.com/articleView?id=remoteaccess_using_userinfo_endpoint.htm&type=5
- https://developer.salesforce.com/docs/atlas.en-us.salesforce_pubs_style_guide.meta/salesforce_pubs_style_guide/glossary_master.htm
- https://help.salesforce.com/articleView?id=glossary.htm&type=0
- https://help.salesforce.com/articleView?id=bi_glossary.htm&type=0
- https://resources.docs.salesforce.com/208/latest/en-us/sfdc/pdf/salesforce_platform_glossary.pdf
- https://resources.docs.salesforce.com/sfdc/pdf/salesforce_platform_glossary.pdf?title=page/Apex_Developer_Glossary
- https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/visualforce_glossary.htm
- https://resources.docs.salesforce.com/sfdc/pdf/canvas_framework.pdf
- https://resources.docs.salesforce.com/sfdc/pdf/salesforce_soql_sosl.pdf
- http://resources.docs.salesforce.com/rel1/doc/en-us/static/pdf/salesforce_query_search_optimization_developer_cheatsheet.pdf
- https://resources.docs.salesforce.com/216/latest/en-us/sfdc/pdf/salesforce_limits_practices.pdf
- https://resources.docs.salesforce.com/210/latest/en-us/sfdc/pdf/api_bulk_v2.pdf
- https://resources.docs.salesforce.com/206/latest/en-us/sfdc/pdf/salesforce_app_limits_cheatsheet.pdf
- https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/glossary_meta.htm
- https://resources.docs.salesforce.com/210/latest/en-us/sfdc/pdf/api_meta.pdf
- https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/glossary_api.htm
- https://developer.salesforce.com/docs/atlas.en-us.ajax.meta/ajax/glossary_ajax.htm
- https://developer.salesforce.com/blogs/engineering/2015/06/solved-acronym-overload-5-easy-steps.html
- https://developer.salesforce.com/docs/atlas.en-us.noversion.mc-apis.meta/mc-apis/triggeredsenddefinition.htm
- https://salesforce.stackexchange.com/questions/101862/marketing-cloud-email-attachment-via-salesforce
- http://www.salesforce.org/wish-knew-getting-started-salesforce/
- https://www.salesforce.com/blog/2017/10/salesforce-economy-idc-study-2022.html
- https://www.salesforce.com/company/careers/pathfinders/
- https://help.salesforce.com/articleView?id=dashboards_components.htm&type=5
- https://help.salesforce.com/articleView?id=getstart_browser_recommendations.htm&type=5
- https://help.salesforce.com/articleView?id=bi_embed.htm&type=5
- https://help.salesforce.com/articleView?id=creating_web_tabs.htm&type=5
- https://help.salesforce.com/articleView?id=fields_using_html_editor.htm&type=5
- https://help.salesforce.com/articleView?id=lightning_page_components.htm&type=5
- https://help.salesforce.com/articleView?id=siteforce_clickjacking_enable.htm&type=5
- https://help.salesforce.com/articleView?id=admin_sessions.htm&type=0
- https://help.salesforce.com/articleView?id=import_prepare.htm&type=5
- https://developer.salesforce.com/docs/atlas.en-us.identityImplGuide.meta/identityImplGuide/identity_overview.htm
- https://developer.salesforce.com/blogs/developer-relations/2014/07/a-beginners-guide-salesforce1.html
- https://developer.salesforce.com/dreamforce/2015-recap
- https://developer.salesforce.com/blogs/developer-relations/2014/11/salesforce-integration-architecture.html
- https://www.salesforce.com/assets/pdf/misc/Platform_Encryption_Architecture_White_Paper.pdf
- https://help.salesforce.com/servlet/servlet.FileDownload?file=01530000003SIm9AAG
- http://content.trust.salesforce.com/trust/uk/learn/protection/
- https://developer.salesforce.com/docs/atlas.en-us.securityImplGuide.meta/securityImplGuide/tracking_field_history.htm
- https://www.salesforce.com/form/pdf/platform-field-audit.jsp
- https://help.salesforce.com/articleView?id=installing_the_data_loader.htm&type=5
- https://help.salesforce.com/articleView?id=000192840&type=1
- https://releasenotes.docs.salesforce.com/en-us/summer17/release-notes/rn_compliance_docs.htm
- https://help.salesforce.com/servlet/servlet.FileDownload?file=0150M000003L28rQAC
- https://help.salesforce.com/articleView?id=Site-Switching-Overview&language=en_US&type=1
- https://help.salesforce.com/servlet/servlet.FileDownload?file=0150M000003KjpEQAS
- https://help.salesforce.com/servlet/servlet.FileDownload?file=0150M000003L3IsQAK
- https://developer.salesforce.com/page/Webinar_FAQ:_Intro_to_Force.com_Canvas
- https://developer.salesforce.com/page/Force.com_Canvas
- https://developer.salesforce.com/blogs/developer-relations/2012/09/create-force-com-apps-anywhere-with-force-com-canvas.html
- https://help.salesforce.com/articleView?id=000351874&language=en_US&type=1&mode=1
- https://help.salesforce.com/articleView?id=networks_cookie.htm&type=5
- https://help.salesforce.com/articleView?id=identity_provider_examples_servicenow.htm&type=5
- https://developer.salesforce.com/page/Secure_Coding_Single_Sign_On
- https://help.salesforce.com/articleView?id=security_frontdoorjsp.htm&type=5
- https://help.salesforce.com/articleView?id=000268571&language=en_US&type=1
- https://help.salesforce.com/articleView?id=security_user_session_info.htm&type=5
- https://help.salesforce.com/articleView?id=remoteaccess_oauth_web_server_flow.htm&type=5
- https://www.citrix.com/content/dam/citrix/en_us/documents/guide/single-sign-on-for-salesforce-with-citrix-netscaler.pdf
- https://aws.amazon.com/blogs/security/tag/salesforce/
- https://github.com/SalesforceFoundation/sfdoc
- https://www.slideshare.net/suitesolutions/dita-quickstartsystemarchitectureofabasicditatoolset
- https://www.nimbleams.com/blog/customizing-salesforce-help-part-3/
- https://idratherbewriting.com/2015/09/29/how-are-you-doing-docs/
- soap exception error site:trailhead.salesforce.com
- https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/soap-apex.htm
- http://data.un.org/Host.aspx?Content=API
- https://success.salesforce.com/issues_view?id=a1p3A000000EQLlQAO&title=documentation-fields-described-in-soap-api-developer-guide-and-actual-eventlogfile-does-not-match
- https://success.salesforce.com/ideaView?id=08730000000kjcwAAA
- https://success.salesforce.com/ideaView?id=08730000000BqG9AAK
- https://success.salesforce.com/issues_view?id=a1p30000000sXyr
- https://success.salesforce.com/ideaView?id=08730000000ksYkAAI
- https://success.salesforce.com/issues_view?id=a1p300000008XKUAA2
- https://success.salesforce.com/issues_view?id=a1p3A000000eatxQAA&title=generated-wsdl-for-apex-webservices-is-malformed
- https://www.petefreitag.com/item/653.cfm
- https://www.slideshare.net/ArnaudBouchez1/a2-from-soap-to-rest-48837831
- https://www.infoworld.com/article/3236391/cloud-computing/rest-or-soap-in-a-cloud-native-environment.html
- https://news.ycombinator.com/item?id=17026215
- https://www.w3.org/TR/soap12-part0/
- https://www.w3.org/TR/wsdl/wsdl20-z.html
- https://www.salesforce.com/eu/products/sales-cloud/features/crm-email-connector/
- https://help.salesforce.com/articleView?id=inbound_email_snapshots.htm&type=5
- https://help.salesforce.com/articleView?id=campaigns_manage.htm&type=5
- https://resources.docs.salesforce.com/216/latest/en-us/sfdc/pdf/salesforce_leads_cheatsheet.pdf
- https://resources.docs.salesforce.com/216/latest/en-us/sfdc/pdf/sales_core.pdf
- https://help.salesforce.com/articleView?id=path_create.htm
- https://help.salesforce.com/articleView?id=mc_co_troubleshoot_email_sends_and_tracking.htm&type=5
- https://resources.docs.salesforce.com/sfdc/pdf/salesforce_lma_guide.pdf
- https://success.salesforce.com/issues_view?id=a1p300000008YmVAAU&title=performance-edition-orgs-showing-as-base-edition-in-lma
- https://github.com/singhdamodar3/sfra
- https://files.mtstatic.com/site_8190/31064/0?Expires=1557348203&Signature=Bz67y6q4LF36fjIj4I3~i6KfavSYLSbEWQavUU~Q~-hdmHtYC0fdFFkPh8IusxcgfIppI89njv5a9rDDSa3-njGBk-9f~4ak9C~g5wcP8uwmZIrKadrKwjGJjPy6W9-M6AkhCiADTgOO6KkqZaCdk9C7zXdDrgZ8HtPY8Z3uVqY_&Key-Pair-Id=APKAJ5Y6AV4GI7A555NA
- https://documentation.b2c.commercecloud.salesforce.com/DOC4/index.jsp?topic=%2Fcom.demandware.dochelp%2FSFRA%2FSFRASetup.html
- https://www.bluewolf.com/bluewolf-now/what-know-about-storefront-reference-architecture
- https://www.karolcholewa.pl/dynamic-email/
- https://github.com/sfmcdg/Salesforce-Marketing-Cloud-Developer-Edition-Recipes/blob/e046cf96acb7ef74fa818e6d5b2696bbeef0cb2c/getting-started-with-ampscript-developer-notes.md
- https://engineering.salesforce.com/how-a-new-ai-architecture-unifies-1000-sources-and-100-million-rows-in-5-minutes/
- https://ampscript.guide/transformxml/
- https://salesforce.stackexchange.com/questions/121360/xml-and-xsl-using-transformxmlxml-xsl
- https://salesforce.stackexchange.com/questions/190430/xslt-error-using-transformxml-function
- http://pages.mail.salesforce.com/gettingstarted/home/?tab=marketing
- https://www.salesforce.com/products/marketing-cloud/resources/email-marketing-best-practices/
- https://help.salesforce.com/articleView?id=mc_rn_october_2018_platform_tenant_specific_subdomains.htm&type=5
- https://help.salesforce.com/articleView?id=mc_rn_october_2018_platform_xml_api.htm&type=5
- https://developer.salesforce.com/docs/atlas.en-us.mc-programmatic-content.meta/mc-programmatic-content/gtlWorkbook.htm
- https://developer.salesforce.com/docs/atlas.en-us.mc-apis.meta/mc-apis/base-asset-types.htm
- https://help.salesforce.com/articleView?id=mc_es_ftp_instruction_guide.htm&type=5
- https://resources.docs.salesforce.com/216/latest/en-us/sfdc/pdf/mc_content_creation.pdf
- https://www.salesforce.com/blog/2015/03/rise-subject-line-designers.html
- https://www.salesforce.com/blog/2017/11/personalization-in-shopping-report.html
- https://help.salesforce.com/articleView?id=mc_ceb_content_builder_best_practices.htm&type=5
- https://help.salesforce.com/articleView?id=mc_es_sender_policy_framework_faq.htm&type=5
- https://help.salesforce.com/articleView?id=mc_pb_personalization_builder.htm&type=5
- https://help.salesforce.com/articleView?id=vpm_designer_elements_connector_fault_email.htm&type=5
- https://help.salesforce.com/articleView?id=mc_es_best_practices_data_extensions_query_activities.htm&type=5
- https://help.salesforce.com/articleView?id=mc_bp_goal_and_exit_best_practices.htm&type=5
- https://aws.amazon.com/partners/success/salesforce-case-study/
- https://help.salesforce.com/articleView?id=data_portability_platform.htm&type=5
- https://www.salesforceben.com/problem-emails-salesforce/
- https://help.salesforce.com/articleView?id=code_debug_log_delete.htm&type=5
- https://help.salesforce.com/articleView?id=partners_del.htm&type=5
- https://support.desk.com/customer/en/portal/articles/2927444-desk-to-service-cloud-product-update-faqs?b_id=16915
- https://support.desk.com/customer/portal/articles/2928031-desk-to-service-cloud-trial-workbook?b_id=16915
- https://support.desk.com/customer/portal/articles/2922045-implementing-service-cloud-with-a-salesforce-partner-frequently-asked-questions?b_id=16915
- https://help.salesforce.com/articleView?id=000003910&type=1
- https://help.salesforce.com/articleView?id=support_channels.htm&type=5
- https://help.salesforce.com/articleView?id=quick_text_setting_up.htm&type=5
- https://help.salesforce.com/articleView?id=data_portability_service.htm&type=5
- http://pages.mail.salesforce.com/gettingstarted/service-cloud/essentials/import-your-data/
- https://www.salesforce.com/content/dam/web/en_us/www/documents/legal/Agreements/salesforce-premierplans-with-accelerators.pdf
- https://help.salesforce.com/articleView?id=service_resources.htm&type=5
- https://help.salesforce.com/articleView?id=rules_escalation_best_practices.htm&type=5
- https://developer.salesforce.com/page/SnapinsMobile
- https://resources.docs.salesforce.com/sfdc/pdf/lightning_knowledge_guide.pdf
- https://resources.docs.salesforce.com/sfdc/pdf/salesforce_knowledge_implementation_guide.pdf
- https://help.salesforce.com/articleView?id=knowledge_article_importer_02csv.htm&type=5
- https://help.salesforce.com/articleView?id=knowledge_settings.htm&type=5
- https://help.salesforce.com/articleView?id=knowledge_admin_tricks_examples_videos.htm&type=5
- https://www.salesforce.com/blog/2014/07/3-steps-to-turn-your-faqs-into-valuable-knowledge-base-articles.html
- https://help.salesforce.com/articleView?id=siteforce_overview.htm&type=5
- https://help.salesforce.com/articleView?id=external_identity_login_discovery_create_config_self.htm&type=5
- http://certification.salesforce.com/RG_CommunitiesArchitecture.pdf
- https://www.salesforceben.com/community-cloud-certification-guide-tips/
- https://developer.salesforce.com/docs/atlas.en-us.communities_dev.meta/communities_dev/communities_dev_example_search.htm
- https://developer.salesforce.com/blogs/2018/06/integrate-external-content-into-communities-using-cms-connect-json.html
- https://developer.salesforce.com/docs/atlas.en-us.communities_dev.meta/communities_dev/communities_dev_cms_personalization_connector.htm
- https://success.salesforce.com/issues_view?id=a1p3A000000EQJ1QAO&title=renaming-a-community-force-com-subdomain-results-in-url-no-longer-exists-error-message
- https://www.salesforce.com/products/community-cloud/features/templates/
- http://certification.salesforce.com/pardotoverview
- http://pages.mail.salesforce.com/gettingstarted/pardot/
- https://www.pardot.com/resources/resource-library/
- http://knowledge.ondmarc.com/en/articles/1684641-pardot-spf-and-dkim-set-up
- https://www.pardot.com/blog/pardot-spf-record-update/
- https://stackoverflow.com/questions/47047487/simulate-a-jsonp-response-with-javascript-urls
- https://thespotforpardot.com/2018/04/29/using-gifs-in-email-marketing-to-surprise-delight/
- https://help.salesforce.com/articleView?id=data_deletion_pardot.htm&type=0
- https://releasenotes.docs.salesforce.com/en-us/winter17/release-notes/rn_security_pe_pardot_data_sync.htm
- https://help.salesforce.com/articleView?id=pardot_landing_pages_multivariate.htm&type=5
- http://knowledge.ondmarc.com/pardot/pardot-spf-and-dkim-set-up
- https://resources.docs.salesforce.com/216/latest/en-us/sfdc/pdf/pardot_get_start.pdf
- https://resources.docs.salesforce.com/latest/latest/en-us/sfdc/pdf/pardot_salesforce_engage_implementation_guide.pdf
- https://help.salesforce.com/articleView?id=000264418&language=en_US&type=1
- https://help.salesforce.com/articleView?id=000271319&type=1&language=en_US
- https://help.salesforce.com/articleView?id=000269324&type=1&language=en_US
- https://help.salesforce.com/articleView?id=pardot_connectors_site_search_third_party_add.htm&type=5
- https://help.salesforce.com/articleView?id=pardot_connector_social_connector_parent.htm&type=5
- https://help.salesforce.com/articleView?id=pardot_email_authentication_add_spf_dkim_to_dns.htm&type=5
- https://help.salesforce.com/articleView?id=pardot_best_practices_for_creating_email_templates.htm&type=5
- https://help.salesforce.com/articleView?id=pardot_email_authentication_spf_dkim_verify.htm&type=5
- https://www.salesforce.com/content/dam/web/en_us/www/documents/accelerators/review-pardot-health.pdf
- https://help.salesforce.com/articleView?id=pardot_create_email_template.htm&type=0
- https://help.salesforce.com/articleView?id=pardot_connectors_olark_add.htm&type=5
- https://help.salesforce.com/articleView?id=pardot_email_authentication_implement.htm&type=5
- https://help.salesforce.com/articleView?id=pardot_admin_add_tracker_domain.htm&type=0
- https://help.salesforce.com/articleView?id=000271709&type=1&language=en_US
- https://help.salesforce.com/articleView?id=pardot_admin_ampsea_parent.htm&type=5
- https://www.pardot.com/blog/allow-multiple-prospects-email-address/
- http://www.salesforceben.com/the-drip/time-to-reconsider-pardot-ampsea/
- https://www.paulbfischer.com/what-pardot-got-wrong-with-the-allow-multiple-prospects-with-the-same-email-address-feature/
- https://success.salesforce.com/ideaView?id=0873A000000E6zpQAC
- https://help.salesforce.com/articleView?id=pardot_emails_preference_center_parent.htm&type=5
- https://help.salesforce.com/articleView?id=pardot_sf_connector_settings_reference.htm&type=5
- https://help.salesforce.com/articleView?id=pardot_default_prospect_field_mapping.htm&type=5
- https://developer.salesforce.com/platform/dx
- https://developer.salesforce.com/blogs/2018/05/create-your-first-salesforce-cli-plugin.html
- https://developer.salesforce.com/blogs/developer-relations/2017/07/migrating-existing-projects-salesforce-dx.html
- https://developer.salesforce.com/blogs/2018/06/working-with-modular-development-and-unlocked-packages-part-1.html
- https://developer.salesforce.com/blogs/2018/06/working-with-modular-development-and-unlocked-packages-part-2.html
- https://developer.salesforce.com/blogs/2018/02/announcing-unlocked-packages-beta.html
- https://lekkimworld.com/2018/10/22/salesforce-dx-error-output-will-go-to-stdout-starting-with-v45/
- https://www.linkedin.com/pulse/salesforce-dx-praneel-pidikiti/
- https://www.linkedin.com/pulse/salesforce-dx-simplify-development-platform-resolving-sourav-basak/
- https://developer.salesforce.com/docs/atlas.en-us.210.0.sfdx_setup.meta/sfdx_setup/sfdx_setup_intro.htm
- https://developer.salesforce.com/blogs/developer-relations/2016/12/salesforce-dx-source-driven-development.html
- https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_setup_install_cli_firewall.htm
- https://resources.docs.salesforce.com/210/latest/en-us/sfdc/pdf/sfdx_setup.pdf
- https://resources.docs.salesforce.com/212/latest/en-us/sfdc/pdf/sfdx_cli_reference.pdf
- https://trailhead.salesforce.com/content/learn/modules/cli-basics/cli-3
- https://trailhead.salesforce.com/content/learn/modules/sfdx_app_dev/sfdx_app_dev_setup_dx
- https://trailhead.salesforce.com/content/learn/modules/cli-basics
- https://trailhead.salesforce.com/content/learn/projects/quick-start-salesforce-dx/set-up-your-salesforce-dx-environment
- https://github.com/forcedotcom/cli
- https://developer.salesforce.com/search/?/#stq=dwnld
- https://developer.salesforce.com/page/Tools
- https://wilsonmar.github.io/salesforce-dx/
- http://matheusgoncalves.com/salesforce-dx-useful-cli-commands/
- https://www.jitendrazaa.com/blog/salesforce/getting-started-with-salesforce-dx-salesforce-developer-experience/
- http://nickworth.com/tag/salesforce/
- https://developer.salesforce.com/blogs/2018/05/create-your-first-salesforce-cli-plugin.html
- https://developer.salesforce.com/blogs/2018/04/developing-plugins-for-the-salesforce-cli.html
- https://developer.salesforce.com/blogs/2017/09/invoking-apex-continuations-lightning-components.html
- https://releasenotes.docs.salesforce.com/en-us/winter18/release-notes/rn_api_lightning_console.htm
- https://www.jitendrazaa.com/blog/salesforce/automate-command-line-dataloader-using-ant-with-dynamic-arguments-and-query/
- https://www.slideshare.net/developerforce/scripted-data-loads-with-salesforce-dataloader-and-ant
- https://force201.wordpress.com/2010/10/15/scripting-the-apex-data-loader-via-ant/
- http://www.sfdcpoint.com/salesforce/step-by-step-guide-for-using-salesforce-command-line-interface-data-loader/
- https://developer.salesforce.com/docs/atlas.en-us.dataLoader.meta/dataLoader/loader_params.htm
- https://help.salesforce.com/articleView?id=Unable-to-connect-with-Data-Loader-and-receiving-failed-to-send-request-error&language=en_US&type=1
- https://help.salesforce.com/articleView?id=000247371&language=en_US&type=1
- https://help.salesforce.com/articleView?id=code_system_log.htm&type=0
- https://help.salesforce.com/articleView?id=code_dev_console_view_code_editor.htm&type=0
- https://help.salesforce.com/articleView?id=apex_hammer_execution_status.htm&type=5
- https://help.salesforce.com/articleView?id=dev_understanding_global_variables.htm&type=0
- https://schemalister.herokuapp.com
- https://presencepress.presencepg.com/team-development-options-for-force-com-47c90c183036?gi=e153bc3417a3
- https://tddprojects.atlassian.net/wiki/spaces/SF/pages/58819731/MavensMate+and+Git+for+Non+Developers
- https://dzone.com/articles/building-salesforce-using-atlassian-bitbucket-pipe
- https://developer.salesforce.com/page/Syncing_Salesforce_Org_Metadata_to_Github
- https://gearset.com/assets/version-control-for-salesforce-whitepaper.pdf
- https://medium.com/slalom-technology/ant-vs-salesforce-dx-a-completed-guide-to-automated-deployments-using-salesforce-cli-ce2b1e2ff770
- https://devcenter.heroku.com/articles/heroku-postgres-import-export#export
- https://devcenter.heroku.com/articles/heroku-postgres-backups
- https://help.salesforce.com/articleView?id=approval_history_reports.htm&type=5
- https://www.postgresql.org/docs/9.5/sql-notify.html
- https://devcenter.heroku.com/articles/java-support
- https://cumulusci.readthedocs.io/en/latest/features.html
- https://stackoverflow.com/questions/19145642/heroku-dbpull-dbpull-is-not-a-heroku-command/22615073#22615073
- https://devcenter.heroku.com/changelog
- https://developer.salesforce.com/blogs/2019/05/continuous-integration-with-salesforce-dx.html
- https://developer.salesforce.com/blogs/2018/06/running-tests-5x-faster-using-sfdx-and-heroku-ci.html
- https://devcenter.heroku.com/articles/heroku-uat-via-3rd-party-providers
- https://blog.heroku.com/how-to-deploy-your-slack-bots-to-heroku
- https://www.sparkpost.com/blog/forwarding-inbound-email-with-heroku/
- https://www.salesforce.com/blog/2018/08/heroku-certifications-customer-data-security
- https://developer.salesforce.com/dreamhouse/pio/
- https://aws.amazon.com/blogs/apn/simplify-your-customer-engagement-with-aws-and-salesforce-heroku/
- https://devcenter.heroku.com/articles/heroku-connect-logs-errors
- https://devcenter.heroku.com/articles/heroku-connect-faq
- https://developers.redhat.com/blog/2015/06/11/type-safe-salesforce-queries-soql-in-scala/
- https://www.redhat.com/files/summit/session-assets/2017/S102611-hu.pdf
- https://docs.workato.com/connectors/salesforce.html#using-real-time-triggers
- https://azure.microsoft.com/en-us/resources/videos/salesforce-outbound-message-notification-trigger-in-logic-apps/
- https://azure.microsoft.com/en-us/resources/templates/101-data-factory-salesforce-to-blob-copy/
- https://developer.salesforce.com/blogs/developer-relations/2017/05/first-impressions-platform-events-salesforce-enterprise-messaging-platform.html
- https://developer.salesforce.com/blogs/2017/11/pure-aloe-sample-app-part-2-integration-platform-events.html
- https://developer.salesforce.com/blogs/developer-relations/2017/07/northern-trail-sample-app-part-2-salesforce-node-js-integration-platform-events.html
- https://help.salesforce.com/articleView?id=external_services.htm&type=5
- https://help.salesforce.com/articleView?id=external_services_schema.htm&type=5
- https://www.slideshare.net/developerforce/easy-nocode-integrations-with-external-services-and-visual-flow
- https://trailhead.salesforce.com/en/content/learn/modules/external-services/define-a-schema-for-an-external-service
- https://releasenotes.docs.salesforce.com/en-us/summer18/release-notes/rn_forcecom_ext_services.htm?edition=&impact=
- https://developer.salesforce.com/blogs/2018/04/connecting-to-swagger-backed-apis-with-clicks-or-code.html
- https://developer.salesforce.com/blogs/2018/08/getting-started-with-mulesoft-a-quick-start-guide-for-salesforce-developers.html
- https://www.npmjs.com/package/muenzpraeger-sfdx-plugin
- https://github.com/karanmalhi/mulesoft-docs/blob/master/mule-fundamentals/v/3.7/mule-connectors.adoc
- https://blogs.mulesoft.com/dev/api-dev/salesforce-integration-inbound-outbound/
- https://developer.mulesoft.com/download-mule-esb-runtime
- https://github.com/mulesoft/mule
- https://blogs.mulesoft.com/tag/odata/
- https://blogs.mulesoft.com/dev-guides/how-to-tutorials/mule-3-6-xml-xpath-xslt-xquery3/
- http://www.h-online.com/developer/features/Free-integration-frameworks-on-the-Java-platform-1672712.html%3Fpage=2
- https://docs.mulesoft.com/mule-runtime/3.6/cmis-connector
- https://www.youtube.com/watch?v=U_Oy_rD6aPs
- https://www.youtube.com/watch?v=7C3-Nf-2dS8
- https://www.youtube.com/watch?v=yuYDqFwSRIo
mulesoft_components:
open_source:
- Mule_ESB: "The core integration platform is open source, allowing developers to access, modify, and extend its functionality."
- Core_Components: "These include basic building blocks like message processors, transformers, and routers."
- Connectors: "Some connectors, like the HTTP and FTP connectors, are open source and can be used to integrate with various systems."
proprietary:
- Anypoint_Platform: "The broader suite of tools, including Anypoint Studio, API Manager, and CloudHub, are proprietary and require a subscription."
- Advanced_Connectors: "While some connectors are open source, others, especially those for specific enterprise applications (e.g., SAP, Salesforce), are proprietary."
- Modules: "Certain modules that provide advanced functionality, such as data transformation and aggregation, are proprietary."
- https://www.servicenow.com/content/dam/servicenow-assets/public/en-us/doc-type/resource-center/white-paper/wp-data-encryption-with-servicenow.pdf
- https://www.servicenow.com/workflow/glossary.html
- https://www.workday.com/content/dam/web/en-us/documents/datasheets/datasheet-touchpoints-kit-us.pdf
- https://workday.nevada.edu/workday-glossary/
- https://community.workday.com/api
- http://salesforce.vidyard.com/watch/dzC5Xx9GF8dJEM8wUqGim5
- https://help.salesforce.com/articleView?id=changesets_about_connection.htm&type=5
- https://help.salesforce.com/articleView?id=changesets_inbound_deploy.htm&type=5
- https://success.salesforce.com/issues_view?id=a1p3A000000mCaKQAU&title=change-set-validation-deployment-stuck-on-in-progress
- https://success.salesforce.com/issues_view?id=a1p300000001AHTAA2&title=unable-to-find-list-view-to-add-to-change-set-to-outbound-changesets-if-it-is-a-member-of-a-queue
- https://help.salesforce.com/articleView?id=changesets_outbound_dependencies.htm&type=5
- https://help.salesforce.com/articleView?id=Change-Set-Error-Duplicate-case-team-entry-for-case-team-name&language=en_US&type=1
- https://developer.salesforce.com/forums/?id=906F0000000BaEhIAK
- https://github.com/celador/ForceCode
- https://cloud9-salesforce.readme.io/docs/getting-started
- https://forcedotcom.github.io/salesforcedx-vscode/
- https://github.com/ejholmes/vim-forcedotcom/blob/master/syntax/apex.vim
- https://developer.salesforce.com/blogs/2018/06/salesforce-for-vs-code-apex-replay-debugger-and-more.html
- https://developer.salesforce.com/blogs/2018/06/lets-talk-deployment-and-reasons-why-they-succeed-or-fail.html
- https://github.com/forcedotcom/idecore/wiki/Downloading-the-Beta-Version-of-the-Force.com-IDE
- https://salesforce.stackexchange.com/questions/41936/is-it-possible-to-remove-fields-using-change-sets-deployment
- https://www.slideshare.net/developerforce/introducing-the-welkin-suite-ide-for-salesforce
- https://trailhead.salesforce.com/en/modules/sfdx_dev_model/units/sfdx_dev_model_sdd
- https://trailhead.salesforce.com/en/modules/lex_dev_lc_vf_concepts/units/lex_dev_lc_vf_concepts_basics
- https://trailhead.salesforce.com/en/modules/alm_deployment/units/alm_deploy
- https://trailhead.salesforce.com/en/modules/alm_deployment/units/alm_migrate
- https://trailhead.salesforce.com/en/modules/alm_deployment/units/alm_tools
- https://trailhead.salesforce.com/en/modules/platform_dev_basics/units/platform_dev_basics_code
- https://help.salesforce.com/articleView?id=domain_name_guidelines.htm&type=5
- https://help.salesforce.com/articleView?id=domain_name_app_url_changes.htm&type=5
- https://help.salesforce.com/articleView?id=faq_domain_name_is_there_a_limit.htm&type=5
- https://developer.salesforce.com/blogs/developer-relations/2015/07/running-aura-app-docker.html
- https://developer.salesforce.com/page/Continuous_Integration_How-To
- https://developer.salesforce.com/page/Force.com_CI_Using_AWS,_Github_and_Jenkins
- https://medium.com/@54chi/continuous-integration-in-salesforce-1697f146ba2f
- https://developer.salesforce.com/blogs/developer-relations/2013/03/setting-up-jenkins-for-force-com-continuous-integration.html
- https://developer.salesforce.com/page/Bestpractices:Continuous_Integration_Techniques
- https://developer.salesforce.com/blogs/developer-relations/2013/03/setting-up-jenkins-for-force-com-continuous-integration.html
- https://business.linkedin.com/sales-solutions/compare-plans/sales-navigator-for-gmail#
- https://chrome.google.com/webstore/detail/engage-for-gmail/gkohnhkfcjakajmcdcndpgjnghfjlkec?hl=en
- https://chrome.google.com/webstore/detail/salesforce-lightning-insp/pcpmcffcomlcjgpcheokdfcjipanjdpc
- https://chrome.google.com/webstore/detail/salesforce-advanced-code/lnkgcmpjkkkeffambkllliefdpjdklmi?hl=en
- https://security.secure.force.com/security/tools/webapp/zapbrowsersetup
- https://resources.docs.salesforce.com/sfdc/pdf/sforce_API.pdf?major=142
- https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3A00000ErH8oUAF
- https://appexchange.salesforce.com/appxListingDetail?listingId=a0N30000003I2gDEAS
- https://developer.salesforce.com/blogs/developer-relations/2017/01/5-steps-transform-idea-appexchange-app.html
- https://partners.salesforce.com/s/education/appinnovators/Partner_Security_Portal_Overview
- https://partners.salesforce.com/partnerNews?id=a033A00000FcUVoQAN
- https://platform-roi-calculator.salesforce.com/IDC-ROI-of-Building-Apps-on-Salesforce.pdf
- https://www.salesforce.com/blog/2017/09/consumer-like-apps-for-work
- https://www.codescience.com/blog/2016/where-to-start-4-things-to-know-before-building-your-appexchange-app
- https://investor.salesforce.com/about-us/investor/investor-news/investor-news-details/2018/Pacers-Sports--Entertainment-Teams-Up-with-Salesforce-to-Create-the-Ultimate-Indiana-Pacers-Fan-Experience/default.aspx
- https://www.bloomberg.com/news/articles/2017-06-08/real-estate-companies-ditch-the-paperwork-get-on-the-cloud
- https://www.reuters.com/article/barrick-gold-moves-technology/barrick-to-eliminate-innovation-role-under-decentralization-idUSL2N1VY195
- https://searchsalesforce.techtarget.com/feature/AppExchange-in-Salesforce-a-slam-dunk-for-Detroit-Pistons-workflow
- https://appexchange.salesforce.com/appxListingDetail?listingId=a0N300000055h1uEAA
- https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3A00000EO5smUAD
- https://appexchange.salesforce.com/appxListingDetail?listingId=a0N30000000q7FrEAI
- https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3A00000EFozgUAD
- github site:appexchange.salesforce.com -title:lightning title:labs
- https://appexchange.salesforce.com/listingDetail?listingId=a0N30000003I9j1EAC
- https://appexchange.salesforce.com/listingDetail?listingId=a0N30000009x7hPEAQ
- https://appexchange.salesforce.com/appxListingDetail?listingId=a0N30000003IjwLEAS
- https://appexchange.salesforce.com/listingDetail?listingId=a0N30000003GJFrEAO
- https://appexchange.salesforce.com/listingDetail?listingId=a0N30000000ps3jEAA
- https://appexchange.salesforce.com/appxListingDetail?listingId=a0N30000003JBggEAG
- https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3A00000FYEEWUA5
- https://appexchange.salesforce.com/listingDetail?listingId=a0N3000000DptX2EAJ
- https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3A000000s5BVUAY
- https://developer.salesforce.com/blogs/developer-relations/2012/05/dynamic-apex-class-instantiation-in-summer-12.html
- https://developer.salesforce.com/blogs/isv/2015/05/integrating-salesforce-primer-isvs.html
- https://www.linkedin.com/pulse/being-platform-developer-salesforce-isv-vs-si-partner-mohith/
- https://trailhead.salesforce.com/en/content/learn/modules/isvforce_basics/isvforce_basics_tools_resources
- https://developer.salesforce.com/blogs/engineering/2017/06/apex-metadata-api-security.html
- https://developer.salesforce.com/blogs/engineering/2017/05/introducing-apex-metadata-api.html
- https://developer.salesforce.com/blogs/engineering/2017/07/build-powerful-setup-apps-new-apex-metadata-api.html
- https://developer.salesforce.com/blogs/isv/2017/08/federated-search-for-salesforce-isvs.html
- https://releasenotes.docs.salesforce.com/en-us/winter18/release-notes/rn_api_other_changes.htm
- https://developer.salesforce.com/blogs/engineering/2017/10/platform-on-the-platform.html
- https://resources.docs.salesforce.com/212/latest/en-us/sfdc/pdf/salesforce_packaging_guide.pdf
- https://developer.salesforce.com/blogs/isv/2015/05/integrating-salesforce-primer-isvs.html
- https://help.salesforce.com/articleView?id=custommetadatatypes_accessing.htm&type=5
- https://developer.salesforce.com/blogs/isv/2017/08/federated-search-for-salesforce-isvs.html
- https://appexchange.salesforce.com/listingDetail?listingId=a0N3000000B5V2gEAF
- https://www.salesforce.com/blog/2017/11/mytrailhead-reinventing-trailblazer-learning.html
- https://www.salesforce.com/en-us/wp-content/uploads/sites/4/documents/pricing/
- https://appexchange.salesforce.com/partners/servlet/servlet.FileDownload?file=00P3A00000ZaQYEUA3
- https://github.com/search?q=repo%3Asalesforce%2Fgrammaticus+%22label+generator%22&type=code
- https://appexchangeguides.relayto.com/e/appexchange-partner-program-benefit-value-proposition-eeytpudsqfwza/fN9B6R4H1
- https://www.salesforce.com/content/dam/web/en_us/www/documents/accelerators/accelerator-library.pdf
- https://trailhead.salesforce.com/en/content/learn/modules/partner-relationship-management
- https://trailhead.salesforce.com/en/content/learn/modules/sf_partner_community
- https://trailhead.salesforce.com/en/content/learn/modules/consulting_partner_basics/
- https://www.salesforce.com/content/dam/web/en_us/www/documents/legal/Terms%20of%20Service/salesforce-permission-to-use-copyrighted-work.pdf
- http://www.0to1code.com/
- https://blog.koresoftware.com/blog/oakland-athletics
- https://blog.koresoftware.com/blog/strategies-for-evolving-your-technology-stack
- https://dtcforce.com/management/
- https://appexchange.salesforce.com/consulting
- https://www.salesforce.org/nonprofit/find-partner/
- https://powerofus.force.com/ProBonoServices
- https://success.salesforce.com/answers?id=90630000000h1bhAAA
- https://www.ceptes.com/
- http://www.provenworks.com/
- https://www.salesforceben.com/my-trailhead-prediction/
- https://www.paulbfischer.com/recapping-a-big-week-of-salesforce-events-in-washington-dc/
- https://appexchange.salesforce.com/appxListingDetail?listingId=a0N30000003JBggEAG
- https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3A00000DqDOXUA3
- https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3A00000EJHn5UAH
- https://appexchange.salesforce.com/appxListingDetail?listingId=a0N3A00000DoIabUAF
- https://appexchange.salesforce.com/appxListingDetail?listingId=a0N30000003IlD7EAK
- https://developer.salesforce.com/blogs/developer-relations/2014/11/enterprise-data-architecture.html
- https://help.salesforce.com/articleView?id=000213366&type=1
- https://developer.salesforce.com/page/Salesforce_Backup_and_Restore_Essentials_Part_1
- https://developer.salesforce.com/page/Salesforce_Backup_and_Restore_Essentials_Part_2
- https://developer.salesforce.com/page/Salesforce_Backup_and_Restore_Essentials_Part_3
- https://developer.salesforce.com/page/Salesforce_Backup_and_Restore_Essentials_Part_4
- https://help.salesforce.com/articleView?id=admin_exportdata.htm&type=5
- https://developer.salesforce.com/docs/atlas.en-us.live_agent_rest.meta/live_agent_rest/live_agent_rest_understanding_resources.htm
- https://resources.docs.salesforce.com/214/latest/en-us/sfdc/pdf/live_agent_rest.pdf
- https://resources.docs.salesforce.com/sfdc/pdf/live_agent_administrator.pdf
- https://resources.docs.salesforce.com/sfdc/pdf/live_agent_dev_guide.pdf
- https://help.salesforce.com/articleView?id=dev_about_scontrols.htm&type=0
- https://help.salesforce.com/articleView?id=pages_intro_vs_scontrols.htm&type=5
- https://developers.google.com/gdata/articles/salesforce
- https://developer.salesforce.com/page/Earlier_Reference_Documentation
- https://jsforce.github.io/
- https://codepen.io/sanooj/pen/WQMGbV.html
- https://github.com/stomita/sformula
- https://github.com/jsforce/jsforce/blob/master/test/package/JSforceTestSuite/workflows/Account.workflow
- https://jsforce.github.io/blog/posts/20170629-salesforce-dx-with-jsforce.html
- https://developer.salesforce.com/blogs/developer-relations/2016/12/forcejs-2-modern-javascript-library-salesforce-rest-apis.html
- https://jsforce.github.io/blog/posts/20140126-deploy-package-using-jsforce-and-gulpjs.html
- https://developer.salesforce.com/page/Testing_CRUD_and_FLS_Enforcement
- https://developer.salesforce.com/page/Enforcing_CRUD_and_FLS
- https://resources.docs.salesforce.com/198/latest/en-us/sfdc/pdf/salesforce_workbench_cheatsheet.pdf
- https://elements.heroku.com/buttons/jdrishe/salesforce-workbench
- https://www.salesforceben.com/salesforce-duplicate-rules/
- https://appexchange.salesforce.com/partners/servlet/servlet.FileDownload?file=00P4V00000uNuXrUAK
- https://blog.bessereau.eu/assets/pdfs/salesforce_data_quality_duplicate_prevention.pdf
- https://resources.docs.salesforce.com/198/latest/en-us/sfdc/pdf/salesforce_data_quality_duplicate_prevention.pdf
- https://douglascayers.com/2016/03/20/salesforce-easy-ways-to-export-data-as-csv/
- https://salesforce.stackexchange.com/questions/27686/how-can-i-convert-a-15-char-id-value-into-an-18-char-id-value/157419#157419
- https://www.forcetalks.com/blog/how-to-manage-duplicate-records-in-salesforce/
- https://developer.salesforce.com/blogs/developer-relations/2011/02/quick-look-into-javascript-remoting.html
- https://balkishankachawa.wordpress.com/2015/10/31/lightning-component-javascript-remoting-and-visualforce-page/
- https://developer.salesforce.com/blogs/developer-relations/2011/05/tale-of-two-visualforce-pages-actionfunction-and-javascript-remoting.html
- https://developer.salesforce.com/forums/?id=906F0000000BHAHIA4
- https://www.slideshare.net/developerforce/df121335-birk
- https://www.slideshare.net/developerforce/df121306-ready
- https://help.salesforce.com/articleView?id=000194152&type=1
- https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_html_features_tags_html5_relaxed_tidying.htm
- https://developer.salesforce.com/blogs/developer-relations/2016/02/lightning-components-visualforce-lightning.html
- https://developer.salesforce.com/blogs/tech-pubs/2013/06/updating-visualforce-chart-data.html
- https://developer.salesforce.com/blogs/developer-relations/2015/01/javascript-html5-css-visualforce.html
- https://developer.salesforce.com/blogs/developer-relations/2015/01/best-practices-improving-visualforce-page-performance.html
- https://developer.salesforce.com/blogs/2017/10/bringing-lightning-styling-visualforce.html
- https://developer.salesforce.com/blogs/2018/01/making-visualforce-work-lightning.html
- https://help.salesforce.com/articleView?id=custom_links_constructing.htm&type=5
- https://releasenotes.docs.salesforce.com/en-us/summer17/release-notes/rn_vf_advanced_pdf.htm
- https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_output_pdf_considerations.htm
- https://help.salesforce.com/articleView?id=pages_static_resources.htm&type=5
- https://help.salesforce.com/articleView?id=pages_dev_mode.htm&type=0
- https://help.salesforce.com/articleView?id=pages_limits.htm&type=5
- https://help.salesforce.com/articleView?id=custommetadatatypes_limits.htm&type=5
- https://help.salesforce.com/s/articleView?id=sf.glossary.htm&type=5
- https://help.salesforce.com/s/articleView?id=sf.essentials_glossary.htm&type=5
- https://practifisuccess.zendesk.com/hc/en-us/articles/4404062724879-Practifi-Salesforce-Object-List
- https://help.salesforce.com/s/articleView?id=sf.sharing_across_objects.htm&type=5
- https://help.salesforce.com/s/articleView?id=sf.standard_profiles.htm&type=5
- https://engineering.salesforce.com/how-we-built-personalization-and-natural-language-into-crm-search-9f4204395bc1/
- https://help.salesforce.com/articleView?id=cs_limits.htm&type=0
- https://help.salesforce.com/articleView?id=sf.extend_click_find_objectmgmt_parent.htm&type=5
- https://developer.salesforce.com/docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql_relationships_and_custom_objects.htm
- https://resources.docs.salesforce.com/latest/latest/en-us/sfdc/pdf/extend_click.pdf
- https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/customobject.htm
- https://help.salesforce.com/articleView?id=sf.relationships_considerations.htm&type=5
- https://help.salesforce.com/articleView?id=sf.dev_objectcreate_notes.htm&type=5
- https://trailhead.salesforce.com/content/learn/projects/quick-start-customize-an-app-with-lightning-object-creator/import-data-to-create-a-custom-object
- https://help.salesforce.com/articleView?id=000326493&mode=1&type=1
- https://admin.salesforce.com/blog/2019/lightning-object-creator-now-generally-available
- https://object-creator.salesforce.com/
- https://katiekodes.com/salesforce-custom-metadata-vs-custom-objects/
- https://www.sputnikmoment.com/re-parenting-records-and-what-it-does-to-workflows/
- https://help.salesforce.com/articleView?id=sf.custommetadatatypes_relationships_create.htm&type=5
- https://help.salesforce.com/articleView?id=sf.custommetadatatypes_relationships.htm&type=5
- https://resources.docs.salesforce.com/212/latest/en-us/sfdc/pdf/extend_code.pdf
- https://help.salesforce.com/articleView?id=csp_trusted_sites.htm&type=5
- https://help.salesforce.com/articleView?id=pages_browser_security_settings.htm&type=0
- https://help.salesforce.com/articleView?id=configuring_remoteproxy.htm&type=5
- https://developer.salesforce.com/page/Secure_Coding_Secure_Communications
- https://www.commerceworks.net/blog/salesforce-enterprise-professional-editions
- https://salesforce.stackexchange.com/questions/51622/how-does-one-test-visualforce-components-with-custom-controllers
- https://help.salesforce.com/articleView?id=000198725&language=en_US&type=1
- https://help.salesforce.com/articleView?id=admin_loginrestrict.htm&type=5
- https://help.salesforce.com/articleView?id=jigsaw_int_jigsaw_understanding_search.htm&type=5
- https://resources.docs.salesforce.com/198/latest/en-us/sfdc/pdf/salesforce_pagelayouts_cheatsheet.pdf
- https://help.salesforce.com/articleView?id=security_controlling_access_using_hierarchies.htm&type=5
- https://help.salesforce.com/articleView?id=security_sharing_considerations.htm&type=5
- https://success.salesforce.com/issues_view?id=a1p3A000000FmmaQAC&title=sharing-locks-are-not-released-during-change-set-deployment-of-objects-in-master-detail-relationship
- http://www.salesforcehacker.com/2013/01/comparing-profiles-and-permission-sets.html
- https://developer.salesforce.com/blogs/engineering/2012/06/using-soql-to-determine-your-users-permissions-2.html
- https://admin.salesforce.com/simplify-your-permissions-with-the-profile-and-permission-set-helper
- http://www.salesforcehacker.com/2013/05/dude-wheres-my-permission.html
- https://www.slideshare.net/SunilKumar67/profiles-and-permission-sets-in-salesforce
- https://help.salesforce.com/articleView?id=admin_insufficient_privileges_object.htm&type=5
- https://help.salesforce.com/articleView?id=perm_sets_search.htm&type=5
- https://help.salesforce.com/articleView?id=000233962&language=en_US&type=1
- https://help.salesforce.com/articleView?id=000269448&type=1&language=en_US
public class SalesforceData {
public Boolean is_active;
public Object metadata;
public String customer_name;
}
List<salesforce_data__c> records = [
SELECT Id, IsActive__c, Metadata__c, CustomerName__c
FROM salesforce_data__c
WHERE IsActive__c = true
];
for (salesforce_data__c record : records) {
insert new salesforce_data (
is_active = record.IsActive__c,
metadata = record.Metadata__c,
customer_name = record.CustomerName__c
);
}
- Schema
- account
- profile
- dashboard
- objectpermissions
- permissionset
- organization
- platformaction
- processnode
- scratchorginfo
- site
- user
- activityhistory
- oauthToken
- https://ideas.salesforce.com/s/idea/a0B8W00000GdZkoUAF/change-rest-query-api-to-accept-post-requests-for-large-soql-queries
- https://help.salesforce.com/articleView?id=000181277&type=1
- https://help.salesforce.com/articleView?id=000006007&type=1
- https://developer.salesforce.com/page/Architect_Core_Resources
- https://developer.salesforce.com/page/Architecting_Force.com_Apps_A_Design_Primer
- https://developer.salesforce.com/page/Paginating_Data_for_Force.com_Applications
- https://developer.salesforce.com/blogs/engineering/2014/11/force-com-soql-performance-tips-systemmodstamp-vs-lastmodifieddate-2.html
- https://developer.salesforce.com/blogs/developer-relations/2013/05/basic-soql-relationship-queries.html
- https://developer.salesforce.com/blogs/engineering/2013/03/long-and-short-term-approaches-for-tuning-force-com-performance.html
- https://developer.salesforce.com/blogs/engineering/2013/08/designing-dashboards-and-reports-for-force-com-implementations-with-large-data-volumes.html
- https://developer.salesforce.com/blogs/engineering/2013/06/extracting-large-data-volume-ldv-in-force-com.html
- https://developer.salesforce.com/blogs/engineering/2013/09/collecting-selectivity-statistics-for-force-com-queries.html
- https://developer.salesforce.com/blogs/engineering/2013/07/maximizing-the-performance-of-force-com-soql-reports-and-list-views.html
- https://developer.salesforce.com/blogs/engineering/2013/02/force-com-batch-apex-and-large-data-volumes.html
- https://developer.salesforce.com/blogs/developer-relations/2012/01/soql-offset-in-spring-12.html
- https://developer.salesforce.com/blogs/tech-pubs/2012/09/soql-polymorphism-or-how-i-learned-to-love-the-polymorphic-relationship.html
- https://developer.salesforce.com/blogs/2018/07/a-declarative-rollup-summary-tool-for-force-com-lookup-relationships.html
- https://developer.salesforce.com/blogs/developer-relations/2017/03/soql-sql-developer.html
- https://trailhead.salesforce.com/en/modules/apex_database/units/apex_database_soql
- https://dreamevent.secure.force.com/articleView?id=platform_connect_considerations_soql.htm&type=5
- https://developer.salesforce.com/blogs/engineering/2015/06/preserving-mentions-triggers.html
- https://help.salesforce.com/articleView?id=code_manage_triggers.htm&type=5
- https://help.salesforce.com/articleView?id=code_dev_console_tab_query_editor.htm&type=0
- https://help.salesforce.com/articleView?id=000181277&type=1
- https://developer.salesforce.com/page/From_SQL_to_SOQL
- https://www.linkedin.com/pulse/first-month-salesforce-apex-c-developer-sean-hunter
- https://help.salesforce.com/articleView?id=000006007&language=en_US%C2%A0&type=1
- https://developer.salesforce.com/page/Apex_Enterprise_Patterns_-_Domain_Layer
- https://developer.salesforce.com/docs/atlas.en-us.214.0.object_reference.meta/object_reference/relationships_among_objects.htm
- https://help.salesforce.com/articleView?id=fields_creating_cross_object_notes.htm&type=5
- https://help.salesforce.com/articleView?id=000187460&language=en_US&type=1
- https://developer.salesforce.com/blogs/engineering/2012/06/using-soql-to-determine-your-users-permissions-2.html
- https://douglascayers.com/2015/10/08/salesforce-how-to-select-all-fields-with-soql-in-apex/
- https://engineering.salesforce.com/the-architecture-files-ep-4-the-database-is-a-magician-b951945ea5b8
- https://developer.salesforce.com/page/Integrate_Salesforce.com_With_Your_On-premise_Database
- https://developer.salesforce.com/page/The_Salesforce_Bulk_API_-_Maximizing_Parallelism_and_Throughput_Performance_When_Integrating_or_Loading_Large_Data_Volumes
- https://developer.salesforce.com/blogs/2017/12/slim-new-bulk-api-v2.html
- https://developer.salesforce.com/blogs/engineering/2013/02/extreme-salesforce-data-loading-part-1-tune-your-data-model.html
- https://developer.salesforce.com/blogs/engineering/2013/06/extreme-force-com-data-loading-part-4-sequencing-load-operations.html
- https://developer.salesforce.com/page/Best_Practices_for_Deployments_with_Large_Data_Volumes
- https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/async_api_headers_enable_pk_chunking.htm
- https://developer.salesforce.com/docs/atlas.en-us.api_bulk_v2.meta/api_bulk_v2/datafiles_csv_samples.htm
- https://help.salesforce.com/articleView?id=000312803&type=1&mode=1
- https://help.salesforce.com/articleView?id=000313396&type=1&mode=1
Here's a comprehensive, exhaustive table listing Trailhead courses specific to databases, in markdown source code:
### Trailhead Courses Specific to Databases
| Course Name | Description | Link |
|------------------------------------------------|---------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
| Apex Basics & Database | Learn how to add business logic and manipulate data using Salesforce Apex programming language. | [Apex Basics & Database](https://trailhead.salesforce.com/content/learn/modules/apex_database)|
| Learn Apex Programming Basics | Get started with Apex and learn how to interact with the database using Apex. | [Learn Apex Programming Basics](https://trailhead.salesforce.com/content/learn/modules/apex_database/apex_database_intro)|
| Data Cloud Trail | Dive into Data Cloud with technical learning on unifying enterprise data and driving AI results. | [Data Cloud Trail](https://trailhead.salesforce.com/data-cloud-trail/)|
| SOQL and SOSL Basics | Learn how to write SOQL queries to retrieve data and SOSL queries to search across multiple objects. | [SOQL and SOSL Basics](https://trailhead.salesforce.com/content/learn/modules/apex_database/salesforce_object_query_language)|
| DML Operations | Understand how to perform DML operations such as insert, update, delete, and upsert in Apex. | [DML Operations](https://trailhead.salesforce.com/content/learn/modules/apex_database/dml_operations)|
| Apex Triggers | Learn how to create and use Apex triggers to automate processes and enforce business rules. | [Apex Triggers](https://trailhead.salesforce.com/content/learn/modules/apex_database/apex_triggers)|Feel free to ask if you need more details on any of these courses or additional assistance!
anti_patterns:
- Spaghetti Sharing Model: "Occurs when the sharing model becomes overly complex and difficult to manage."
- Bulk Updates Without Limits: "Scheduling classes from triggers without ensuring they don't exceed the limit."
- Updating Classes with Active Jobs: "Attempting to update a class with active scheduled jobs through the Salesforce UI."
quotas:
- Scheduled Apex Jobs: "Maximum of 100 scheduled Apex jobs at one time."
- Scheduled Apex Executions: "Maximum of 250,000 executions per 24-hour period or number of user licenses in your org multiplied by 200, whichever is greater."
rate_limits:
- Synchronous Apex Limits: "Applies to scheduled Apex jobs."
- Bulk API Jobs: "Maximum number of Bulk Apex jobs added to the queue with System.enqueueJob is 50."
- Callouts: "Maximum of 100 callouts (HTTP requests or web services calls) in a transaction."
- CPU Time: "Maximum CPU time on Salesforce servers is 10,000 milliseconds for synchronous Apex and 60,000 milliseconds for asynchronous Apex."
- https://salesforce.stackexchange.com/questions/208894/unstyled-flows-in-lightning-out
- https://success.salesforce.com/issues_view?id=a1p3A0000018ByPQAU&title=cache-miss-on-js-controller-tends-to-give-error-for-lightning-component-used-in-lightning-out
- https://www.slideshare.net/andyinthecloud/salesforce-world-tour-2016-lightning-out-components-on-any-platform-62404418
- https://engineering.salesforce.com/open-sourcing-autotriagebot-deced9933cd7
- https://trust.salesforce.com/en/security/responsible-disclosure-policy/
- https://help.salesforce.com/articleView?id=lightning_components_roadmap.htm
- https://releasenotes.docs.salesforce.com/en-us/winter19/release-notes/rn_videos.htm
- https://releasenotes.docs.salesforce.com/en-us/winter18/release-notes/rn_videos.htm
- https://releasenotes.docs.salesforce.com/en-us/winter18/release-notes/rn_lc.htm
- https://help.salesforce.com/articleView?id=sf1_requirements.htm&type=5
- https://developer.salesforce.com/blogs/2018/08/all-about-custom-lightning-page-templates.html
- https://www.lightningdesignsystem.com/release-notes/
- https://developer.salesforce.com/blogs/developer-relations/2017/08/displaying-user-notifications-lightning-component-framework.html
- https://developer.salesforce.com/blogs/2018/01/introduction-salesforce-ui-api.html
- https://developer.salesforce.com/blogs/2017/09/invoking-apex-continuations-lightning-components.html
- https://developer.salesforce.com/blogs/2018/07/how-variable-types-operate-in-the-lightning-component-framework.html
- https://developer.salesforce.com/blogs/2018/06/using-path-in-your-custom-lightning-component.html
- https://developer.salesforce.com/blogs/2018/05/summer18-lightning-base-components-for-editing-data.html
- https://developer.salesforce.com/blogs/2018/04/lightning-container-component-building-components-with-react-angular-and-other-libraries.html
- https://docs.skuid.com/latest/en/skuid/salesforce/event-handling-lightning.html
- https://developer.salesforce.com/blogs/developer-relations/2017/08/winter-coming-lightning.html
- https://developer.salesforce.com/blogs/developer-relations/2017/06/summer-17-developers-whats-new-lightning.html
- https://developer.salesforce.com/blogs/developer-relations/2017/05/build-lightning-file-uploader-component.html
- https://developer.salesforce.com/blogs/developer-relations/2017/04/lightning-inter-component-communication-patterns.html
- https://developer.salesforce.com/blogs/developer-relations/2017/03/lightning-components-best-practices-caching-data-storable-actions.html
- https://developer.salesforce.com/blogs/developer-relations/2017/04/lightning-components-performance-best-practices.html
- https://medium.com/salesforcesummaries/visualforce-in-lightning-experience-32d024e72d36
- https://www.codescience.com/blog/2017/ultimate-lightning-guide-defining-the-differences-in-salesforce-lightning
- https://developer.salesforce.com/blogs/developer-relations/2017/04/lightning-components-performance-best-practices.html
- https://developer.salesforce.com/blogs/2018/07/10-tips-for-implementing-an-efficient-lightning-lookup-component.html
- https://developer.salesforce.com/blogs/2018/07/10-tips-for-implementing-an-efficient-lightning-lookup-component.html
- https://developer.salesforce.com/blogs/developer-relations/2017/04/mutual-fund-explorer-new-lightning-components-sample-application.html
- https://developer.salesforce.com/blogs/developer-relations/2015/09/lightning-progress-bar.html
- https://help.salesforce.com/articleView?id=dev_understanding_global_variables.htm&type=5
- https://www.slideshare.net/thomaswaud/advanced-designs-for-reusable-lightning-components
- https://www.slideshare.net/Zen4orce/salesforce-lightning-tips-tricks
- https://www.slideshare.net/developerforce/lightning-components-performance-best-practices
- https://saramorgan.net/2017/05/30/lightning-best-practice-conditional-rendering/
- https://www.slideshare.net/Zen4orce/salesforce-lightning-tips-tricks
- https://force201.wordpress.com/2017/02/26/dragula-drag-and-drop-in-a-lightning-component/
- https://www.jitendrazaa.com/blog/salesforce/lookup-component-in-salesforce-lightning/
- https://www.linkedin.com/pulse/display-standard-report-charts-lightning-component-using-chaturvedi/
- https://salesforce.stackexchange.com/questions/161987/any-3rd-party-slds-stencil-css-available
- https://www.lightningdesignsystem.com/guidelines/markup-and-style/
- https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/components_documentation.htm
- https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/security_intro.htm
- https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/container_messages_npm.htm
- https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/js_cb_format_dates.htm#!
- https://developer.salesforce.com/resource/pdfs/Lightning_Components_Cheatsheet.pdf
- https://opfocus.com/dynamic-field-binding-in-salesforce-lightning-experience/
- https://help.salesforce.com/articleView?id=search_fields_lex.htm
- https://salesforce.stackexchange.com/questions/146399/lightning-component-in-lightning-app-builder
- https://releasenotes.docs.salesforce.com/en-us/spring17/release-notes/rn_api_lightning.htm
- https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/security_ls_api_version_mix.htm
- https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/aura_compref_force_recordView.htm
- https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/data_service.htm
- https://developerforce.github.io/lightning-app-builder-tutorial/
- http://developerforce.github.io/lightning-components-tutorial/
- https://help.salesforce.com/articleView?id=csp_trusted_sites.htm&type=5
- https://releasenotes.docs.salesforce.com/en-us/summer17/release-notes/rn_lightning_stricter_csp.htm
- https://developer.salesforce.com/page/Lightning_Security
- http://www.dannicholson.co.uk/2018/06/working-with-conditional-attribute.html
- https://salesforce.stackexchange.com/questions/325067/maximum-file-size-with-lightninginput-lightning-input-type-file
- https://gitter.im/sfdc-lwcc/community?source=orgpage
- https://developer.salesforce.com/docs/component-library/bundle/lightning-spinner/example
- https://developer.salesforce.com/blogs/tag/lightning-web-components
sf lightning generate component --type lwc --name myLightningWebComponent --output-dir force-app/main/default/lwc
sf build:lwc -p force-app/main/default/lwc/myLightningWebComponent
zip -r myLightningWebComponent.zip force-app/main/default/lwc/myLightningWebComponent
- https://releasenotes.docs.salesforce.com/en-us/winter19/release-notes/rn_console_background_utility_items.htm
- https://www.salesforce.com/blog/2018/04/introducing-proactive-monitoring.html
- https://help.salesforce.com/articleView?id=accessibility_keyboard_shortcuts_lex.htm&type=5
- https://developer.salesforce.com/blogs/2018/01/promote-equality-building-accessible-content.html
- https://releasenotes.docs.salesforce.com/en-us/winter16/release-notes/rn_general_accessibility_lex.htm
- https://www.salesforce.com/company/legal/508_accessibility/
- https://c1.sfdcstatic.com/content/dam/web/en_us/www/documents/legal/Agreements/policies/ExternalFacing_Services_Policy.pdf
- https://developer.salesforce.com/blogs/2018/01/promote-equality-building-accessible-content.html
- https://developer.salesforce.com/blogs/2018/08/new-density-settings-for-the-lightning-experience-ui-in-winter-19.html
- https://medium.com/salesforce-ux/tagged/accessibility
- https://en.wikipedia.org/wiki/Configure,_price_and_quote
- https://www2.deloitte.com/content/dam/Deloitte/us/Documents/human-capital/us-consulting-cpq-capabilities.pdf
- https://resources.docs.salesforce.com/latest/latest/en-us/sfdc/pdf/final_cpq_map.pdf
- https://resources.docs.salesforce.com/latest/latest/en-us/sfdc/pdf/cart_to_quote_solution_kit.pdf
- https://marketplace.visualstudio.com/items?itemName=paustint.sfdc-qcp-vscode-extension
- https://help.salesforce.com/articleView?id=cpq_product_fields.htm&type=5
- https://help.salesforce.com/articleView?id=cpq_pricing_methods.htm&type=5
- http://www.salesforcechris.com/salesforce-cpq-specialist-resource-guide/
- https://releasenotes.docs.salesforce.com/en-us/winter20/release-notes/rn_forcecom_globalization_enable_icu_cruc.htm
- https://help.salesforce.com/articleView?id=cpq_multicurrency_cpq.htm&type=5
- https://help.salesforce.com/articleView?id=cpq_localization_fields_ref.htm&type=5
- https://help.salesforce.com/articleView?id=cpq_localization_concept.htm&type=5
- https://developer.salesforce.com/blogs/isv/2015/07/internationalization-options-in-angularjs-and-salesforce-part-1-localization.html
- https://help.salesforce.com/articleView?id=translation_file_description.htm&type=0
- https://help.salesforce.com/articleView?id=workbench_overview.htm&type=0
- https://resources.docs.salesforce.com/198/latest/en-us/sfdc/pdf/salesforce_using_multiple_currencies.pdf
- https://help.salesforce.com/articleView?id=supported_data_types.htm&type=5
- http://resources.docs.salesforce.com/204/12/en-us/sfdc/pdf/salesforce_workbench_export_import_cheatsheet.pdf
- https://www.salesforce.com/blog/2017/04/how-to-localize-your-content-marketing
- https://www.salesforce.com/blog/2014/09/5-tips-engaging-international-audiences-gp.html
- https://developer.salesforce.com/docs/atlas.en-us.noversion.service_sdk_ios.meta/service_sdk_ios/localization.htm
- https://www.salesforce.com/products/commerce-cloud/partner-marketplace/partners/datawords/
- https://www.salesforce.com/products/commerce-cloud/partner-marketplace/partners/global-e/
- -title:beta -title:salesforce +pilot title:release site:salesforce.com
- https://help.salesforce.com/articleView?id=admin_setup_search.htm&type=5
- https://chrome.google.com/webstore/detail/lightning-extension/hfglcknhngdnhbkccblidlkljgflofgh
- https://trailhead.salesforce.com/content/learn/modules/setup-quick-look/learn-to-use-setup-and-the-object-manager
- https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/sforce_api_partner_objects.htm
- https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/field_types.htm
- https://salesforce.stackexchange.com/questions/17660/create-a-record-in-an-object-with-lookup-fields-through-java-soap
- https://trailhead.salesforce.com/content/learn/projects/improve-data-quality-for-a-cleaning-supply-app/create-a-validation-rule
- https://trailhead.salesforce.com/content/learn/modules/validation-rules/get-started-with-validation-rules
- https://www.salesforceben.com/validation-rules-in-salesforce/
- https://cloudcoach.com/blog/make-your-project-work-for-you-validation-rules/
- https://trailblazer.salesforce.com/ideaView?id=08730000000750AAAQ
- https://help.mulesoft.com/s/article/Millisecond-precision-salesforce
- https://help.salesforce.com/articleView?id=sf.adding_fields.htm&type=5
- https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/custom_fields.htm
- https://help.salesforce.com/s/articleView?id=sfdo.EDA_Add_Custom_Picklist_Values.htm&type=5
- https://resources.docs.salesforce.com/214/latest/en-us/sfdc/pdf/salesforce_useful_formula_fields.pdf
- https://resources.docs.salesforce.com/204/latest/en-us/sfdc/pdf/salesforce_formula_size_tipsheet.pdf
- https://help.salesforce.com/articleView?id=useful_advanced_formulas_commission.htm&type=5
- https://help.salesforce.com/articleView?id=merge_fields_syntax.htm&type=5
- https://developer.salesforce.com/blogs/developer-relations/2013/06/cross-object-owner-fields-a-powerful-new-formula-option.html
- https://developer.salesforce.com/blogs/engineering/2013/05/dealing-with-exception-filters-in-force-com.html
- https://developer.salesforce.com/blogs/engineering/2013/02/force-com-soql-best-practices-nulls-and-formula-fields.html
- https://help.salesforce.com/articleView?id=fields_lookup_filters_best_practices.htm&type=5
- ext:pdf +above +below site:salesforce.com
- https://www.salesforce.com/contents/data/data_governance_stewardship/?d=70130000000NTAQ&internal=true&nc=70130000000NTAL
- https://www.salesforce.com/form/data/data_get_data_strong.jsp?d=70130000000NTA6&internal=true&nc=70130000000NTA1
- https://trailhead.salesforce.com/content/learn/modules/data_quality/data_quality_improve_quality
- https://developer.salesforce.com/docs/atlas.en-us.salesforce_app_limits_cheatsheet.meta/salesforce_app_limits_cheatsheet/salesforce_app_limits_platform_api.htm
- https://help.salesforce.com/s/articleView?id=release-notes.rn_salesforce_pricing_api_resources.htm&release=248&type=5
- https://developer.salesforce.com/docs/atlas.en-us.salesforce_app_limits_cheatsheet.meta/salesforce_app_limits_cheatsheet/salesforce_app_limits_chatter_rest.htm
- https://admin.salesforce.com/messy-org-no-fear
- https://github.com/salesforce/refocus/blob/master/view/admin/config/detail.js
- https://www.salesforce.com/assets/pdf/misc/audit_charter.pdf
- https://help.salesforce.com/articleView?id=security_overview_auditing.htm&type=5
- https://www.salesforce.com/ca/blog/2015/03/content-audit.html
- https://s1.q4cdn.com/454432842/files/gov_docs/audit_charter.pdf
- https://www.salesforce.com/content/dam/web/en_us/www/documents/legal/Agreements/data-processing-addendum.pdf
- https://help.salesforce.com/articleView?id=pardot_prospect_audits.htm&type=5
- https://help.salesforce.com/articleView?id=How-to-determine-which-Salesforce-user-deleted-record&language=en_US&type=1
- https://help.salesforce.com/articleView?id=Heroku-Trust-and-Compliance-Documentation&language=en_US&type=1
- https://help.salesforce.com/articleView?id=Interpreting-the-Forensic-Logs&language=en_US&type=1
- https://www.salesforce.com/blog/2017/08/salesforce-shield-ensure-compliance.html
- https://www.sec.gov/Archives/edgar/data/1393052/000156459016015753/veev-ex1017_286.htm
- https://help.salesforce.com/articleView?id=000212606&language=en_US&type=1
- https://s3-us-west-1.amazonaws.com/sftrusthomecomplianc/docs/Salesforce-Processor-BCR.pdf
- https://www.salesforce.com/content/dam/web/en_us/www/documents/legal/Agreements/data-processing-addendum.pdf
- https://medium.com/@swayamchouksey/top-new-feature-coming-in-salesforce-summer18-release-a60b76714dfc
- http://www.sfdcpanther.com/summer-18-gems-for-salesforce-developer/
- https://jetbi.com/salesforce-summer-2018-release-overview
- https://jenwlee.wordpress.com
- https://www.forcetalks.com/
- https://s1.q4cdn.com/454432842/files/doc_presentations/2016/2016-DF-Analyst-Day_FINAL_Website.pdf
- https://investor.salesforce.com/about-us/investor/investor-resources/default.aspx
- https://spiro.ai/why-salespeople-hate-salesforce/
- https://www.salesforceben.com/8-amazing-salesforce-facts-you-never-knew/
- https://smallbusinesscrmcoach.com/crm-and-email-marketing-the-power-couple/
- https://www.zdnet.com/article/contact-managers-and-crm-systems-are-incredibly-stupid/
- http://www.oracle.com/us/corporate/analystreports/nucleus-crm-tech-value-matrix-4466326.pdf
- https://s1.q4cdn.com/454432842/files/doc_downloads/goverance/sfdc-Corporate-Governance-Guidelines-(CURRENT)-March-16-2016.pdf
- https://www.salesforce.com/content/dam/web/en_us/www/documents/legal/misc/Salesforce-Processor-BCR.pdf
- https://www.salesforce.com/content/dam/web/en_us/events-master/dreamforce-2018/dreampitch/dreampitch2018-rules.pdf
- https://s1.q4cdn.com/454432842/files/doc_downloads/Salesforce-Code-of-Conduct_FINAL_CURRENT.pdf
- https://www.salesforce.com/content/dam/web/en_us/dreamforce/resources/DF16Prospectus.pdf
- https://www.salesforce.com/content/dam/web/en_us/www/documents/legal/salesforce_MSA.pdf
- https://steveblank.com/tools-and-blogs-for-entrepreneurs/
- http://downloads.digitalmarketingdepot.com/rs/727-ZQE-044/images/MIR_1604_PredAnalyt.pdf?ref=emailmarketingtipps.de
- https://timelines.issarice.com/wiki/Timeline_of_salesforce.com
- https://en.wikipedia.org/wiki/Configure_Price_Quote
- https://developer.salesforce.com/calendar/
- https://developer.salesforce.com/dreamforce/2016-recap
- http://salesforce.vidyard.com/watch/ARIjWm2qrDkJVJxEhReFug
- https://www.youtube.com/watch?v=Yc5FrviQqO8
- https://www.youtube.com/results?search_query=salesforce&sp=EgYYAigBMAE%253D
- https://success.salesforce.com/sessions?eventId=a1Q3000000qQOd9EAG#/
- https://success.salesforce.com/ev_sitetos
- https://www.youtube.com/playlist?list=PLB39017CE69F42E50&feature=view_all
Format:2xx0xx000
- https://help.salesforce.com/articleView?id=000004410&language=en_US&type=1
- https://success.salesforce.com/ideaView?id=0873A000000TpuoQAC
- https://success.salesforce.com/ideaView?id=08730000000Ko5FAAS
- https://success.salesforce.com/issues_releases_view?release=212000000
- https://success.salesforce.com/issues_releases_view?release=212010000
- https://success.salesforce.com/issues_releases_view?release=210000000
- https://success.salesforce.com/ideaView?id=0873A000000E3ZTQA0
- https://success.salesforce.com/answers?id=90630000000gyh3AAA
- https://success.salesforce.com/ideaView?id=08730000000ZEucAAG
- https://success.salesforce.com/ideaview?id=08730000000BrApAAK
- https://help.salesforce.com/articleView?id=000331188&type=1&mode=1
- https://www.mikearthur.net/oauth-2-0-authorisation-with-jwt-bearer-flow
- https://www.us-cert.gov/sites/default/files/publications/Cloud_Security_Guidance-.gov_Cloud_Security_Baseline.pdf
- https://www.salesforce.com/campaign/releases/winter-19/overview/
- https://releasenotes.docs.salesforce.com/en-us/summer18/release-notes/salesforce_release_notes.htm
- https://www.salesforce.com/campaign/releases/summer-18/
- https://releasenotes.docs.salesforce.com/en-us/summer16/release-notes/rn_feature_impact.htm
- https://releasenotes.docs.salesforce.com/en-us/spring18/release-notes/rn_api_objects_changed.htm
- http://releasenotes.docs.salesforce.com/en-us/winter18/release-notes/rn_sfdx_th_doc.htm
- http://releasenotes.docs.salesforce.com/en-us/spring15/release-notes/rn_api_rest.htm
- http://releasenotes.docs.salesforce.com/en-us/summer16/release-notes/rn_mobile_s1_newfeat_bb_eos_reminder.htm
- https://resources.docs.salesforce.com/186/latest/en-us/sfdc/pdf/salesforce_winter14_release_notes.pdf
- https://resources.docs.salesforce.com/170/latest/en-us/sfdc/pdf/salesforce_spring11_release_notes.pdf
- https://resources.docs.salesforce.com/160/latest/en-us/sfdc/pdf/salesforce_summer09_release_notes.pdf
- https://resources.docs.salesforce.com/144/latest/en-us/sfdc/pdf/salesforce_winter07_release_notes.pdf
- https://help.salesforce.com/s/articleView?id=000383962&type=1
- https://help.salesforce.com/articleView?id=exporting_data.htm&type=5
- https://help.salesforce.com/articleView?id=000206083&language=en_US&type=1
- https://help.salesforce.com/articleView?id=pardot_export_prospects.htm&type=5
- https://help.salesforce.com/s/articleView?language=en_US&id=release-notes.rn_api_graphql.htm
- https://help.salesforce.com/s/articleView?id=sf.graphQL_requirements.htm
This document compares Salesforce External Services and Flow HTTP Callout specifically for use cases where the query string is used for correlation, idempotency, or trace propagation. It also evaluates how each feature behaves in terms of Salesforce logging and supported HTTP verbs.
Flow HTTP Callout preserves query parameters exactly as written in the URL template.
- Query parameters can be dynamic, using Flow variables.
- Correlation keys can be generated at runtime and inserted directly into the query string.
- Salesforce does not reorder, strip, or normalize the parameters.
- The final URL is visible in Flow logs and Event Monitoring.
This makes Flow HTTP Callout the stronger option for correlation‑driven integrations.
External Services preserves query parameters only if they are defined in the OpenAPI specification.
- Query parameters are static and cannot be added or removed dynamically.
- Correlation keys cannot be generated at runtime unless the OpenAPI spec explicitly defines a parameter for them.
- The final URL is abstracted behind the Named Credential and may not appear in logs.
This makes External Services less suitable for correlation or idempotency keys.
Flow provides high‑visibility logging:
- Flow debug logs show the fully resolved URL, including query parameters.
- Event Monitoring (API Callout events) logs the full outbound URL.
- Flow fault logs include the URL and parameter values.
- Additional logging steps can be inserted before or after the callout.
This level of detail makes troubleshooting and correlation straightforward.
External Services provides lower‑visibility logging:
- Debug logs show the operation name, not the full URL.
- Query parameters may not appear unless explicitly included in the OpenAPI spec.
- Event Monitoring logs the callout but may show a masked or abstracted URL.
- No ability to insert logging inside the External Services call.
This makes correlation more difficult, especially when relying on query‑string keys.
Flow supports all major HTTP verbs:
- GET
- POST
- PUT
- PATCH
- DELETE
Flow also supports:
- request bodies for POST/PUT/PATCH,
- dynamic query parameters for any verb,
- conditional logic around which verb to use.
This makes Flow the most flexible declarative callout mechanism.
External Services supports verbs only if defined in the OpenAPI spec:
- GET and POST are well supported.
- PATCH and DELETE support depends on schema complexity.
- Query parameters must be declared in the spec and cannot be dynamic.
This makes External Services more rigid and schema‑driven.
| Category | Flow HTTP Callout | External Services |
|---|---|---|
| Query‑string preservation | Fully preserved; dynamic; Flow variables allowed | Preserved only if defined in OpenAPI; static |
| Dynamic correlation keys | Supported | Not supported |
| Log granularity | High: full URL visible in logs | Medium: URL may be abstracted |
| HTTP verb support | Full support for GET/POST/PATCH/DELETE | Limited to verbs defined in OpenAPI |
| Runtime flexibility | High | Low |
| Best use case | Correlation, idempotency, dynamic routing | Stable, schema‑driven integrations |
Flow HTTP Callout is the better choice when:
- correlation keys must be generated at runtime,
- query parameters must be preserved exactly,
- logs must show the full URL for troubleshooting,
- the integration requires flexible HTTP verbs.
External Services is better when:
- the integration is schema‑driven and stable,
- the OpenAPI contract is fixed,
- dynamic correlation is not required.
- https://developer.salesforce.com/page/Salesforce_APIs
- https://berlin2017.codemotionworld.com/wp-content/uploads/2017/11/The-Power-of-Salesforce-APIs.pdf
- https://developer.salesforce.com/blogs/tech-pubs/2017/01/simplify-your-api-code-with-new-composite-resources.html
- https://releasenotes.docs.salesforce.com/en-us/winter19/release-notes/rn_api_objects_new.htm
- https://wordpress.org/plugins/salesforce-wordpress-to-lead/
- https://github.com/developerforce/Force.com-JavaScript-REST-Toolkit/
- https://help.salesforce.com/articleView?id=code_version_settings_apex.htm&type=0
- https://developer.salesforce.com/blogs/developer-relations/2013/03/mashing-up-force-com-apis-with-ql-io-part-1.html
- https://developer.salesforce.com/blogs/tech-pubs/2017/01/simplify-your-api-code-with-new-composite-resources.html
- https://developer.salesforce.com/page/Making_Authenticated_Web_Service_Callouts_Using_Two-Way_SSL
- http://releasenotes.docs.salesforce.com/en-us/winter15/release-notes/rn_api_meta.htm
- https://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_topics_list.htm
- https://releasenotes.docs.salesforce.com/en-us/winter15/release-notes/rn_chatter_api_general.htm
- https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/js_api_calls_platform.htm
- https://developer.salesforce.com/blogs/developer-relations/2014/07/building-single-page-app-angularjs-salesforce-rest-api.html
- https://developer.salesforce.com/page/Integrating_an_AngularJS_App_on_Heroku_with_Force.com
- https://developer.salesforce.com/blogs/developer-relations/2013/05/creating-hybrid-apps-with-the-salesforce-mobile-pack-for-backbone-js.html
- https://help.salesforce.com/articleView?id=000126966&type=1
- https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/sforce_api_om_outboundmessaging.htm
- https://developer.salesforce.com/page/Webinar:_Apex_REST_API_FAQ
- https://resources.docs.salesforce.com/206/latest/en-us/sfdc/pdf/bi_dev_guide_rest.pdf
- https://api.status.salesforce.com/v1/docs/
- https://resources.docs.salesforce.com/212/latest/en-us/sfdc/pdf/salesforce_pubs_style_guide.pdf
- https://releasenotes.docs.salesforce.com/en-us/summer17/release-notes/rn_api_ui.htm
- https://resources.docs.salesforce.com/214/latest/en-us/sfdc/pdf/api_ui.pdf
- https://help.salesforce.com/articleView?id=pages_static_resources_manage.htm&type=5
- https://developer.salesforce.com/blogs/developer-relations/2013/05/instantly-reloading-visualforce-static-resources.html
- https://developer.salesforce.com/dreamhouse/slack/
- https://get.slack.help/hc/en-us/articles/227838227-Salesforce-for-Slack
- https://developer.salesforce.com/blogs/developer-relations/2016/05/slack-salesforce-integration.html
- https://einstein.ai/terms-of-service
- https://digitalcommons.bryant.edu/cgi/viewcontent.cgi?article=1149&context=mark_jou
- https://www.youtube.com/watch?v=a_Mwbi5F9X4
- https://help.salesforce.com/s/articleView?id=sf.bi_security_datasets_predicate_considerations.htm
- https://itlc.it.wisc.edu/wp-content/uploads/Salesforce-Einstein-in-Higher-Ed.pdf
- https://digital.hbs.edu/platform-digit/submission/salesforce-democratizing-ai-for-small-businesses/
- https://digital.hbs.edu/platform-rctom/submission/salesforce-is-stealing-einsteins-thunder/
- https://help.salesforce.com/articleView?id=aac_data_policy_delete_activity.htm&type=5#aac_data_policy_delete_activity
- https://help.salesforce.com/articleView?id=nba_perms_and_entitlements.htm&type=5
- https://www.salesforce.com/blog/2017/08/ai-for-marketers
- https://rctom.hbs.org/submission/salesforce-is-stealing-einsteins-thunder/
- https://tutorials.botsfloor.com/creating-a-simple-chatbot-in-salesforce-lightning-using-api-ai-in-less-than-60-mins-4dd79777b246
- https://dawidnaude.com/what-does-einstein-bots-mean-for-salesforce-customers-and-partners-80fdcb941a3f
- https://www.bluewolf.com/bluewolf-now/not-all-chatbots-are-created-equal-part-ii-watson-and-einstein
- https://elements.heroku.com/addons/einstein-platform-services
- https://www.slideshare.net/partnerforce/einstein-partner-webinar-february-13-2017
- https://www.salesforce.com/products/marketing-cloud/best-practices/data-mining-predictive-analytics/
- https://www.forcetalks.com/blog/hello-world-code-for-salesforce-einstein/
- https://blogs.absyz.com/2018/02/27/einstein-intent-analysis-using-einstein-language-on-salesforce-chatter/
- http://www.0to1code.com/blog/category/machine-learning-and-artificial-intelligence/salesforce-einstein/
- https://releasenotes.docs.salesforce.com/en-us/summer18/release-notes/rn_bi_discovery_writeback.htm
- http://bobbuzzard.blogspot.co.uk/2017/07/not-hotdog-salesforce-einstein-edition.html
- https://releasenotes.docs.salesforce.com/en-us/spring18/release-notes/rn_einstein_language_ga.htm
- https://einstein.ai/research/new-neural-network-building-block-allows-faster-and-more-accurate-text-understanding
- https://devcenter.heroku.com/articles/einstein-vision
- https://theneuralperspective.com/2016/12/20/highlights-and-tutorials-for-concepts-discussed-in-richard-socher-on-the-future-of-deep-learning/
- https://www.salesforce.com/blog/2018/06/einstein-analytics-templates.html
- https://help.salesforce.com/articleView?id=bi_integrate_connectors_S3.htm&type=5
- https://help.salesforce.com/articleView?id=approval_history_reports.htm&type=5
- https://help.salesforce.com/articleView?id=000249567&type=1&language=en_US
- https://resources.docs.salesforce.com/sfdc/pdf/bi_dev_guide_ext_data_format.pdf
- https://resources.docs.salesforce.com/214/latest/en-us/sfdc/pdf/bi_dev_guide_json.pdf
- https://resources.docs.salesforce.com/sfdc/pdf/salesforce_analytics_rest_api.pdf
- https://help.salesforce.com/articleView?id=bi_integrate_connectors_remote.htm&type=5
- https://help.salesforce.com/articleView?id=bi_integrate_salesforce_extract_transformation_operation.htm&type=5
- https://help.salesforce.com/articleView?id=bi.htm&type=5
- https://releasenotes.docs.salesforce.com/en-us/winter18/release-notes/rn_bi_design_step_apex.htm
- https://www.salesforce.com/assets/pdf/misc/BPWP_10Mistakes_0408.pdf
- https://quip.com/D0xhA7L33hxy
- https://help.salesforce.com/articleView?id=admin_files_quip_oauth_configuration.htm&type=0
- https://marketing.adobe.com/resources/help/en_US/insight/client/client.pdf
- https://marketing.adobe.com/resources/help/en_US/target/target/c_common-ab-testing-pitfalls.html
- https://marketing.adobe.com/resources/help/en_US/target/target/c_sample_size_determination.html
- https://releasenotes.docs.salesforce.com/en-us/winter18/release-notes/rn_collab_emojis.htm
- https://help.salesforce.com/articleView?id=000004478&type=1&language=en_US
- https://admin.salesforce.com/5-ways-you-can-use-emoji-to-delight-your-users-and-drive-adoption
- https://help.salesforce.com/articleView?id=collab_group_layout_customize.htm&type=5
- https://success.salesforce.com/ideaView?id=08730000000LhC6AAK
- https://api.salesforceiq.com/#object-model
- https://help.salesforceiq.com/articles/overview-for-essentials-users-import-salesforceiq-activity-after-migrating-to-sales-cloud
- https://help.salesforceiq.com/articles/essentials-users-only-how-to-import-comments-into-salesforce-using-dataloader
- https://help.salesforce.com/articleView?id=content_delivery_about.htm&type=0
- https://help.salesforce.com/articleView?id=admin_files_connect_google_auth.htm&type=5
- https://help.salesforce.com/articleView?id=000233055&type=1
- https://support.salesforce.com/articleView?id=admin_files_connect_search.htm&type=0
- https://developer.salesforce.com/forums/?id=906F00000008z1rIAA
- https://help.salesforce.com/articleView?id=lightning_for_gmail_user_overview.htm&type=0
- https://www.salesforce.com/hub/service/gmail-for-small-businesses/
- https://help.salesforce.com/articleView?id=Which-Email-Setup-is-Best-for-My-Org&type=1
- https://www.salesforce.com/blog/2014/10/gmail-moves-to-2-in-email-client-market-share.html
- https://help.salesforce.com/articleView?id=Salesforce-Outbound-Emails-Impacted-by-Google-DMARC-Policy-Adoption&language=en_US&type=1
- https://help.salesforce.com/articleView?id=emailadmin_send_through_salesforce_setup.htm&type=5
- https://help.salesforce.com/articleView?id=000268388&type=1&language=en_US
- https://appexchange.salesforce.com/listingDetail?listingId=a0N30000003JuTlEAK
- https://medium.freecodecamp.org/use-google-sheets-and-google-apps-script-to-build-a-blog-cms-c2eab3fb0b2b
- https://releasenotes.docs.salesforce.com/en-us/winter18/release-notes/rn_sales_lightning_s_g_event_scope.htm
- https://gsuite.google.com/customers/salesforce.html
- https://support.google.com/docs/answer/9073952
- https://www.benchmarkemail.com/blogs/detail/how-to-create-a-diy-crm-system-with-google-docs
- http://json2apex.herokuapp.com/
- https://resources.docs.salesforce.com/210/latest/en-us/sfdc/pdf/api_tooling.pdf
- https://github.com/simple-salesforce/simple-salesforce
- https://github.com/mailtoharshit/awesome-salesforce
- https://github.com/exiahuang/SalesforceXyTools
- https://github.com/forcedotcom/SalesforceMobileSDK-Samples
- https://help.salesforce.com/articleView?id=salesforce_app_security.htm&type=5
- https://help.salesforce.com/articleView?id=000192840&type=1
- https://releasenotes.docs.salesforce.com/en-us/winter17/release-notes/rn_mobile_s1_otherfeat_plist.htm
- https://resources.docs.salesforce.com/servicesdk/214/0/en-us/pdf/service_sdk_android.pdf
- https://help.salesforce.com/articleView?id=Salesforce-Mobile-SDK-Support&language=en_US&type=1
- https://forcedotcom.github.io/SalesforceMobileSDK-Android/constant-values.html
- https://developer.salesforce.com/mobile/services/mobile-templates/templates-faq
- https://developer.salesforce.com/docs/atlas.en-us.mobile_sdk.meta/mobile_sdk/gs_whatsnew.htm
- https://developer.salesforce.com/docs/atlas.en-us.mobile_sdk.meta/mobile_sdk/react_native_new_project.htm
- https://developer.salesforce.com/docs/atlas.en-us.mobile_sdk.meta/mobile_sdk/install_npmjs.htm
- https://help.salesforce.com/articleView?id=remoteaccess_oauth_device_flow.htm&type=5
- https://salesforce.stackexchange.com/questions/187314/
- https://help.salesforce.com/articleView?id=remoteaccess_oauth_username_password_flow.htm&type=5
- https://help.salesforce.com/articleView?id=remoteaccess_oauth_device_flow.htm&type=5
- https://developer.salesforce.com/blogs/developer-relations/2011/11/revoking-oauth-2-0-access-tokens-and-refresh-tokens.html
- https://releasenotes.docs.salesforce.com/en-us/summer18/release-notes/rn_einstein_platform_services_refresh_token.htm
- https://help.salesforce.com/articleView?id=mc_rn_october_2018_mp_mobilepush.htm&type=5
- https://help.salesforce.com/articleView?id=mc_rn_october_2018_mp_mobilepush.htm&type=5
- https://help.salesforce.com/articleView?id=mc_rn_october_2018_mp_firebase.htm&type=5
- https://help.salesforce.com/articleView?id=mc_mp_provisioning_info.htm&type=5
- https://developer.salesforce.com/blogs/2017/11/introducing-ibm-watson-sdk-salesforce.html
- https://www.ibm.com/watson/ibm-salesforce/
- https://www.ibm.com/blogs/watson/2018/09/introducing-watson-discovery-for-salesforce-an-ai-powered-insight-engine-for-crm/
- https://www.ibm.com/blogs/watson/2018/06/watson-and-salesforce-embedded-ai-solutions-for-your-customer-service-and-sales-needs/
- https://www.ibm.com/support/knowledgecenter/en/SSWU4L/Integrations/imc_Integrations/Integrations_q_a_watson_assistant/SalesforceCRMiOverview.html
- https://developer.ibm.com/dwblog/2017/watson-discovery-apex-sdk-salesforce/
- https://www.ibm.com/blogs/watson/2018/03/watson-ai-helps-deliver-sales-intelligence-with-salesforce/
- https://developer.ibm.com/patterns/integrate-watson-ai-into-salesforce-apps/
- https://www.ibm.com/support/knowledgecenter/en/SSWU4L/Integrations/imc_Integrations/Integrations_q_a_watson_assistant/002_FAQs143.html
- https://www.ibm.com/communities/analytics/watson-analytics-blog/how-do-i-connect-watsonanalytics-to-my-instance-of-salesforce-so-it-may-be-used-as-a-data-source/
- https://resources.docs.salesforce.com/sfdc/pdf/integration_patterns_and_practices.pdf
- https://help.salesforce.com/articleView?id=integrate_what_is_api.htm&type=5
- https://community.boomi.com/s/article/Salesforce-Integration-Guide
- https://theblog.adobe.com/data-mapping-and-merge-mapping-in-salesforce/
- https://www.salesforce.com/products/einstein-analytics/etl-partners/
- https://www.salesforce.com/blog/2018/11/21-salesforce-customers-review-integration-apps
- https://help.salesforce.com/articleView?id=mc_mdc_2014_winter_release.htm&type=5
- https://developer.financialforce.com/technical-reference/using-the-salesforce-api/
- https://developer.ibm.com/integration/blog/2016/03/18/integrating-with-salesforce-using-a-rest-api-created-in-ibm-integration-bus/
- https://www.ibm.com/support/knowledgecenter/en/SSMKHH_10.0.0/com.ibm.etools.mft.doc/bz90690_.htm
- https://www.ibm.com/support/knowledgecenter/en/SSMKHH_10.0.0/com.ibm.etools.mft.doc/bz90710_.htm
- https://www.ibm.com/support/knowledgecenter/SSZJPZ_11.7.0/com.ibm.swg.im.iis.ds.entpak.salesf.doc/topics/SFQueryStatusBulkLoad.html
- https://www.ibm.com/support/knowledgecenter/en/SSWU4L/Integrations/imc_Integrations/002_FAQs143.html
- https://www.ibm.com/support/knowledgecenter/en/SSWSR9_11.5.0/com.ibm.swg.im.mdmhs.sdfcintegration.doc/topics/c_mdmandsfdc_integration.html
- https://developer.ibm.com/integration/blog/2016/03/18/integrating-with-salesforce-using-a-rest-api-created-in-ibm-integration-bus/
- https://www.ibm.com/support/knowledgecenter/en/SSZJPZ_11.7.0/com.ibm.swg.im.iis.ds.entpak.salesf.doc/topics/SalesforcePackOverview.html
- https://www.ibm.com/support/knowledgecenter/en/SSMKHH_10.0.0/com.ibm.etools.mft.doc/bz90730_.htm
- https://www.ibm.com/support/knowledgecenter/en/SSGR73_7.5.0/com.ibm.wci.doc/toc_salesforceactivities.html
- https://www.ibm.com/support/knowledgecenter/SSZJPZ_11.7.0/com.ibm.swg.im.iis.ds.entpak.salesf.doc/topics/SFConfigSSLConnectionToSalesforce.html
- https://www.codeproject.com/Tips/1000517/Integrating-Salesforce-com-over-REST-API-using-IBM
- https://www.codeproject.com/Articles/886855/Salesforce-API-integration-with-ASP-Net-applicatio
- https://help.salesforce.com/articleView?id=review_and_certification.htm&type=5
- https://help.salesforce.com/articleView?id=mc_es_microsite_landing_page_security_best_practices.htm&type=5
- https://help.salesforce.com/articleView?id=000268571&language=en_US&type=1
- https://salesforce.stackexchange.com/questions/139988/escape-xml-function-in-visualforce/213076#213076
- https://help.salesforce.com/articleView?id=Changing-the-System-Administrator-for-my-Salesforce-account&language=en_US&type=1
- https://help.salesforce.com/articleView?id=users_deactivate_external_option.htm&type=5
- https://help.salesforce.com/articleView?id=000232553&type=1
- https://help.salesforce.com/articleView?id=search_enhanced_lookup_enable.htm&type=5
- https://help.salesforce.com/articleView?id=customize_search_settings.htm&type=5
- https://help.salesforce.com/articleView?id=000007225&type=1
- https://help.salesforce.com/articleView?id=users_licenses_overview.htm&type=5
- https://help.salesforce.com/articleView?id=security_activation_about.htm&type=5
- https://help.salesforce.com/articleView?id=admin_sessions.htm&type=5
- https://developer.salesforce.com/page/Force.com_workbook
- https://resources.docs.salesforce.com/210/latest/en-us/sfdc/pdf/setup.pdf
- http://resources.docs.salesforce.com/202/latest/en-us/sfdc/pdf/sf.pdf
- https://resources.docs.salesforce.com/212/latest/en-us/sfdc/pdf/deploy_sandboxes.pdf
- https://support.salesforce.com/articleView?id=users_profiles_record_types.htm&type=5
- https://help.salesforce.com/articleView?id=login_hours.htm&type=0
- https://developer.salesforce.com/blogs/developer-relations/2013/10/api-versions-and-the-salesforce-metadata-api.html
- https://developer.salesforce.com/blogs/2018/03/salesforce-pipelines-with-heroku-flow.html
- https://developer.salesforce.com/blogs/2018/06/running-tests-5x-faster-using-sfdx-and-heroku-ci.html
- https://developer.salesforce.com/blogs/developer-relations/2013/11/announcing-the-command-line-interface-for-force-com.html
- https://developer.salesforce.com/blogs/engineering/2013/11/code-coverage-and-the-force-com-developer-console.html
- https://developer.salesforce.com/blogs/tech-pubs/2013/05/developer-console-logging-poetry-in-motion.html
- https://developer.salesforce.com/page/A_Guide_to_Application_Performance_Profiling_in_Force.com
- https://developer.salesforce.com/page/Webinar:_Advanced_Testing_%26_Debugging_Using_the_Developer_Console_(2013-Apr)
- https://developer.salesforce.com/blogs/engineering/2013/05/force-com-performance-profiling-using-the-developer-console.html
- https://developer.salesforce.com/blogs/engineering/2013/10/behind-the-scenes-of-record-ownership-in-salesforce.html
- https://help.salesforce.com/articleView?id=Code-coverage-steps-and-considerations-prior-to-deployments&type=1
- https://help.salesforce.com/servlet/servlet.FileDownload?file=015300000036AisAAE
- https://help.salesforce.com/articleView?id=000230820&language=en_US&type=1
- http://www.wadewegner.com/2017/09/deploy-to-salesforce-dx/
- https://help.salesforce.com/articleView?id=code_tools_ant_using.htm&type=5
- https://developer.salesforce.com/blogs/2018/06/working-with-modular-development-and-unlocked-packages-part-1.html
- https://developer.salesforce.com/blogs/2018/06/working-with-modular-development-and-unlocked-packages-part-2.html
- https://developer.salesforce.com/blogs/2018/06/working-with-modular-development-and-unlocked-packages-part-3.html
- https://developer.salesforce.com/blogs/developer-relations/2017/07/migrating-existing-projects-salesforce-dx.html
- https://deploy-to-sfdx.com/
- https://developer.salesforce.com/page/Streaming_API
- http://docs.releasenotes.salesforce.com/en-us/spring15/release-notes/rn_apex_queueable_chaining.htm
- https://success.salesforce.com/issues_view?id=a1p3A000000f10RQAQ&title=lightning-items-to-approve-do-not-display-if-owner-is-a-queue
- https://success.salesforce.com/issues_view?id=a1p3A000000ESeKQAW&title=in-lightning-case-assignment-email-notification-is-sent-to-queue-members-user-when-ownership-is-changed-through-workflow-field-update
- https://success.salesforce.com/issues_view?id=a1p30000000jjaBAAQ&title=assigning-order-ownership-to-a-queue-in-a-workflow-field-update-results-in-error-when-attempting-to-deploy-via-metadata-api-or-change-set
- https://help.salesforce.com/articleView?id=code_apex_flex_queue.htm&type=5
- https://success.salesforce.com/ideaView?id=08730000000kmjRAAQ
- https://success.salesforce.com/ideaView?id=08730000000bDsmAAE
- https://blogs.mulesoft.com/dev-guides/api-connectors-templates/websockets-connector/
- https://developer.salesforce.com/blogs/developer-relations/2012/11/real-time-push-notifications-from-force-com-to-heroku-using-websockets.html
- https://blog.jamigibbs.com/websockets-in-salesforce-with-lightning-web-components/
- https://developer.salesforce.com/docs/atlas.en-us.platform_events.meta/platform_events/platform_events_subscribe_pubsub_api.htm
- https://developer.salesforce.com/docs/platform/pub-sub-api/guide/intro.html
- https://github.com/forcedotcom/pub-sub-api/blob/main/pubsub_api.proto
- https://developer.salesforce.com/docs/platform/pub-sub-api/guide/other-code-examples.html
- https://help.salesforce.com/s/articleView?id=release-notes.rn_pub_sub_api_ga.htm&release=240&type=5
- https://developer.salesforce.com/docs/atlas.en-us.platform_events.meta/platform_events/platform_events_subscribe_cometd.htm
- https://www.forcetalks.com/blog/how-to-integrate-salesforce-streaming-api-with-net-core-application/
- https://cloudshine.org/which-api-to-consider/
- https://help.mulesoft.com/s/article/Salesforce-connector-using-the-Streaming-API-fails-to-establish-a-successful-connection-when-the-system-clock-is-not-properly-set
- https://docs.cometd.org/current/reference/
- https://salesforce.stackexchange.com/questions/217867/cometd-not-working-in-summer-18
- https://searchnetworking.techtarget.com/tip/Prevent-IP-address-conflicts-on-your-wireless-network-by-managing-DHCP-scopes
- https://blog.jeffdouglas.com/2013/01/16/force-com-streaming-api-with-ruby/
- https://hub.appirio.com/tech-blog/the-salesforce-streaming-api-with-example
- http://www.terrasky.com/quick-tips-on-streaming-api-for-salesforce-developers/
- https://developer.salesforce.com/blogs/developer-relations/2013/11/dynamic-reporting-integrating-the-force-com-analytics-and-streaming-apis.html
- https://developer.salesforce.com/blogs/developer-relations/2016/05/streaming-salesforce-events-heroku-kafka.html
- https://developer.salesforce.com/blogs/tech-pubs/2014/02/pushing-the-limits-with-streaming-api-in-spring-14.html
- https://developer.salesforce.com/blogs/developer-relations/2013/01/responsive-visualforce-using-streaming-api-and-asynchronous-apex.html
- https://developer.salesforce.com/blogs/tech-pubs/2012/05/three-force-com-streaming-api-techniques.html
- https://developer.salesforce.com/page/Streaming_Real_Time_Data_into_Visualforce
- https://gist.github.com/abhinavguptas/1238904
- http://blog.deadlypenguin.com/blog/2016/07/14/xml-parsing-apex/
- https://github.com/skolakan/Apex-XML-Serializer
- http://tutorials.jenkov.com/java-xml/stax-xmleventwriter.html
- https://www.oreilly.com/library/view/java-web-services/0596002696/ch04s02.html
- https://sanaulla.info/2013/05/23/parsing-xml-using-dom-sax-and-stax-parser-in-java/
- https://bugs.openjdk.java.net/browse/JDK-8145963
- https://bugs.openjdk.java.net/browse/JDK-7148925
- http://java.boot.by/ocewsd6-guide/ch10.html
- http://developer.classpath.org/doc/javax/xml/stream/XMLInputFactory-source.html
- http://www.xmlsh.org/FunctionsStax
- https://www.xml.com/pub/a/2003/09/17/stax.html
- http://www.vogella.com/tutorials/RSSFeed/article.html
- https://softwarecave.org/2014/02/18/parse-xml-document-using-streaming-api-for-xml-stax/
- https://www.xml.com/pub/a/2003/09/17/stax.html
- https://salesforce.stackexchange.com/questions/302034/how-do-i-get-started-working-with-json-in-apex
- https://opfocus.com/json-deserialization-techniques-in-salesforce/
- http://peterknolle.com/accessing-apex-rest-from-site-com/
- https://help.salesforce.com/articleView?id=000264418&language=en_US&type=1
- https://help.salesforce.com/articleView?id=remoteaccess_using_openid.htm&type=5
- https://help.salesforce.com/articleView?id=remoteaccess_revoke_token.htm&type=5
- https://lwc.dev/
- http://amitsalesforce.blogspot.com/2018/12/Invoke-Apex-Controller-from-Lightning-Web-Component.html
- https://developer.salesforce.com/blogs/2019/05/introducing-lightning-web-components-open-source.html
- https://help.salesforce.com/articleView?id=lex_supported_editions.htm&type=5
- https://help.salesforce.com/articleView?id=overview_edition_lex_only.htm&type=5
- https://help.salesforce.com/articleView?id=overview_limits_general.htm&type=5
- https://help.salesforce.com/articleView?id=email_eds_perms.htm&type=5
- https://help.salesforce.com/articleView?id=000005140&type=1
- json asynchronous domain:salesforce.com ext:pdf
- https://resources.docs.salesforce.com/sfdc/pdf/big_objects_guide.pdf
- https://resources.docs.salesforce.com/sfdc/pdf/async_soql_guide.pdf
- https://developer.salesforce.com/page/Asynchronous_Processing_in_Force_com
- https://developer.salesforce.com/blogs/engineering/2013/05/force-com-concurrent-request-limits.html
- https://developer.salesforce.com/blogs/engineering/2014/07/record-locking-cheat-sheet.html
- https://releasenotes.docs.salesforce.com/en-us/winter15/release-notes/rn_apex_queueing_jobs.htm
- https://developer.salesforce.com/blogs/engineering/2014/05/4-steps-successful-asynchronous-processing-in-force-com.html
- https://developer.salesforce.com/blogs/developer-relations/2013/03/testing-apex-callouts-using-httpcalloutmock.html
- https://developer.salesforce.com/blogs/engineering/2015/11/avoiding-the-concurrent-request-limit-via-synchronous-callout-optimization.html
- https://developer.salesforce.com/blogs/2017/10/site-switching-apex-callouts.html
- https://developer.salesforce.com/blogs/developer-relations/2013/06/passing-objects-to-future-annotated-methods.html
- https://developer.salesforce.com/blogs/engineering/2015/05/platform-cache.html
- https://developer.salesforce.com/blogs/developer-relations/2015/02/apex-continuations-asynchronous-callouts-visualforce-pages.html
- https://releasenotes.docs.salesforce.com/en-us/winter18/release-notes/rn_apex.htm
- https://help.salesforce.com/articleView?id=How-can-I-avoid-getting-lock-errors-in-my-organization-1327109108393&language=en_US&type=1
- https://developer.salesforce.com/blogs/developer-relations/2016/09/take-the-first-steps-ways-you-can-replace-javascript-buttons.html
- https://developer.salesforce.com/blogs/2017/09/invoking-apex-continuations-lightning-components.html
- https://help.salesforce.com/articleView?id=customize_wf.htm&type=5
- https://developer.salesforce.com/page/The_Flow_Factory_Design_Pattern
- https://help.salesforce.com/articleView?id=workflow_rules_new.htm&type=5
- https://developer.salesforce.com/docs/atlas.en-us.usefulWorkflowRules.meta/usefulWorkflowRules/workflow_examples.htm
- https://help.salesforce.com/articleView?id=workflow_rules_define.htm&type=5
- https://help.salesforce.com/articleView?id=vpm_faq_workflow_comparing.htm&type=5
- https://developer.salesforce.com/blogs/engineering/2013/07/alert-salesforce-event-notification-designs-for-force-com-apps.html
- https://success.salesforce.com/issues_index?tag=Performance&status=inreview
- https://success.salesforce.com/issues_index?status=nofix
- https://developer.salesforce.com/blogs/engineering/2015/02/gack.html
- https://developer.salesforce.com/blogs/developer-relations/2017/01/time-clean-unneeded-salesforce-customizations.html
- https://developer.salesforce.com/blogs/engineering/2016/01/apex-interactive-debugger.html
- https://developer.salesforce.com/blogs/engineering/2017/01/salesforce-console-performance.html
- https://developer.salesforce.com/blogs/developer-relations/2016/02/introducing-salesforce-lightning-inspector.html
- https://developer.salesforce.com/blogs/developer-relations/2016/06/salesforce-console-performance-internet-explorer-firefox-chrome.html
- https://releasenotes.docs.salesforce.com/en-us/winter18/release-notes/rn_api_lightning_console.htm
- https://developer.salesforce.com/blogs/engineering/2016/06/remote-process-invocation-continuations.html
- https://developer.salesforce.com/blogs/engineering/2013/04/apex-test-code-segregation.html
- https://help.salesforce.com/articleView?id=process_troubleshoot_debuglogs.htm&type=5
- https://help.salesforce.com/articleView?id=code_setting_debug_log_levels.htm&type=5
- https://help.salesforce.com/articleView?id=code_dev_console_checkpoints_setting.htm&type=5
- https://help.salesforce.com/articleView?id=code_dev_console_execute_anonymous.htm&type=5
- https://help.salesforce.com/articleView?id=code_dev_console_solving_problems_using_system_log.htm&type=5
- https://help.salesforce.com/articleView?id=code_debug_log_classes.htm&type=5
- https://help.salesforce.com/articleView?id=code_system_log.htm&type=5
- https://help.salesforce.com/articleView?id=code_debug_log_details.htm&type=5
- http://sfdcsrini.blogspot.com/2014/04/what-is-exception-handling-in-apex.html
- http://www.salesforcegeneral.com/salesforce-articles/how-do-i-change-who-gets-apex-error-emails.html
- https://bluecanvas.io/2017/02/13/debugging-apex-salesforce-debug-log-checkpoints.html
- http://www.laceysnr.com/break-the-rules-to-avoid-breaking-the-limits/
- https://developer.salesforce.com/page/An_Introduction_to_Exception_Handling
- https://developer.salesforce.com/blogs/2017/09/error-handling-best-practices-lightning-apex.html
- https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_classes_exception_methods.htm
- https://help.salesforce.com/articleView?id=000232681&language=en_US&type=1
- https://help.salesforce.com/articleView?id=000004186&type=1
- https://help.salesforce.com/articleView?id=code_dev_console_view_checkpoints.htm&type=5
- https://addons.mozilla.org/en-US/firefox/addon/salesforce-inspector/?src=search
- https://addons.mozilla.org/en-US/firefox/addon/organizer/?src=search
- https://help.salesforce.com/articleView?id=search_federated_parent.htm&type=5
- https://help.salesforce.com/articleView?id=search_configure_solr_federated_search.htm&type=5
- https://resources.docs.salesforce.com/sfdc/pdf/federated_search.pdf
- https://help.salesforce.com/articleView?id=search_define_federated_search.htm&type=5
- https://help.salesforce.com/articleView?id=networks_search_federated.htm&type=5
- https://developer.salesforce.com/docs/atlas.en-us.220.0.eclipse.meta/eclipse/debugger_puzzle_create_accounts.htm
- https://resources.docs.salesforce.com/220/latest/en-us/sfdc/pdf/eclipse.pdf
- https://engineering.salesforce.com/flaky-tests-and-how-to-avoid-them-25b84b756f60
- https://releasenotes.docs.salesforce.com/en-us/winter16/release-notes/rn_apex_callouts_tests.htm
- https://releasenotes.docs.salesforce.com/en-us/spring17/release-notes/rn_apex_stub_api.htm
- https://releasenotes.docs.salesforce.com/en-us/winter17/release-notes/rn_apex_stub_api.htm
- https://www.salesforce.com/video/297000/
- https://salesforcecodex.com/salesforce/difference-between-salesforce-wsdl-files/
- https://help.salesforce.com/articleView?id=000004760&language=en_US&type=1
- https://help.salesforce.com/articleView?id=000250959&language=en_US&type=1
- https://success.salesforce.com/issues_view?id=a1p3A000000BMJWQA4
- https://success.salesforce.com/issues_view?id=a1p3A000000eatxQAA
- https://developer.salesforce.com/forums/?id=906F00000008vMRIAY
- https://developer.salesforce.com/docs/atlas.en-us.salesforce_developer_environment_tipsheet.meta/salesforce_developer_environment_tipsheet/salesforce_developer_environment_overview.htm
- https://github.com/developerforce/Force.com-Toolkit-for-PHP/blob/master/soapclient/metadata.wsdl.xml
- https://github.com/SalesforceFoundation/Cumulus/blob/master/src/package.xml
- http://mvnrepository.com/artifact/com.force.api/force-wsc
- https://developer.salesforce.com/blogs/developer-relations/2015/05/introducing-lightning-anydb-connector-data-democracy-fueled-salesforce-lightning-connect.html
- https://www.skuid.com/blog/skuid-co-creator-principal-software-engineer-hosts-reddit-expert-ama/
- https://success.salesforce.com/issues_view?id=a1p3A0000008gA2QAI&title=unable-to-retrieve-results-from-a-query-when-using-count-on-an-external-object-in-json-format
- https://www.skuid.com/blog/skuid-so-simple-a-third-grader-built-an-app/
- https://help.salesforce.com/articleView?id=odata_type_mapping_v2.htm&type=5
- https://help.salesforce.com/articleView?id=platform_connect_considerations.htm&type=5
- https://help.salesforce.com/articleView?id=security_pe_considerations_apps.htm&type=5
- https://help.salesforce.com/articleView?id=bi_integrate_connectors_limits_limitations.htm&type=5
- https://developer.salesforce.com/page/Generating_and_Loading_Representative_Test_Data_for_Salesforce_and_Force.com_Orgs
- http://www.tgerm.com/2011/09/testing-apex-webservice-callout.html
- https://saramorgan.net/2015/07/01/best-way-to-generate-lots-of-fake-test-data-for-force-com-orgs/
- https://www.reddit.com/r/salesforce/comments/7ca8j7/dummy_data/
- https://github.com/salesforce/sfdx-lwc-jest/blob/master/README.md
- https://developer.salesforce.com/page/An_Introduction_to_Apex_Code_Test_Methods
- http://www.sfdcpoint.com/salesforce/testsetup-method-in-apex-test-classes/
- https://developer.salesforce.com/blogs/2018/04/getting-started-with-the-lightning-testing-service.html
- https://www.salesforce.com/video/294751/
- https://github.com/forcedotcom/LightningTestingService/blob/master/lightning-component-tests/test/default/staticresources/jasmineExampleTests.resource
- http://bobbuzzard.blogspot.com/2017/07/lightning-testing-service-part-1.html
- http://bobbuzzard.blogspot.com/2017/08/lightning-testing-service-part-2-custom.html
- https://github.com/forcedotcom/LightningTestingService
- https://github.com/keirbowden/LtgJasmineUnitTesting
- https://www.jitendrazaa.com/blog/salesforce/introduction-to-lightning-test-services-with-jasmine/
- https://developer.salesforce.com/blogs/2018/04/getting-started-with-the-lightning-testing-service.html
- https://medium.com/nintex-developers/rearchitecting-your-salesforce-lighting-javascript-for-testability-dfbaed89ecdf
- https://developer.salesforce.com/blogs/developer-relations/2012/05/passing-parameters-by-reference-and-by-value-in-apex.html
- https://developer.salesforce.com/blogs/engineering/2014/12/solving-java-memory-regressions-high-accuracy-zero-overhead.html
- https://developer.salesforce.com/blogs/2018/05/why-we-test.html
- https://developer.salesforce.com/blogs/2018/05/month-of-testing-apex-testing-in-depth-part-2-of-3.html
- https://developer.salesforce.com/blogs/2018/05/month-of-testing-advanced-topics-in-salesforce-unit-testing-part-3-of-3.html
- https://help.salesforce.com/articleView?id=code_test_results.htm&type=5
- https://partners.salesforce.com/s/education/appinnovators/Enterprise_Scale_Testing
- https://help.salesforce.com/articleView?id=000004760&language=en_US&type=1
- https://help.salesforce.com/articleView?id=000187503&language=en_US&type=1
- https://help.salesforce.com/articleView?id=dev_wsdl.htm&type=5
- https://help.salesforce.com/articleView?id=code_manage_packages.htm&type=5
- https://help.salesforce.com/articleView?id=faq_apex_callout_validation.htm&type=0
- https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_callouts_wsdl2apex_considerations.htm
- https://softwareengineering.stackexchange.com/questions/750/what-should-you-test-with-unit-tests
- https://developer.salesforce.com/blogs/developer-relations/2016/07/six-tips-great-unit-tests.html
- https://success.salesforce.com/answers?id=9063A000000p6BvQAI
- https://developer.salesforce.com/page/Generating_and_Loading_Representative_Test_Data_for_Salesforce_and_Force.com_Orgs
- https://developer.salesforce.com/blogs/developer-relations/2013/08/integrating-force-com-using-xml-in-apex.html
- https://webkul.com/blog/parsing-xml-file-apex/
- http://crism.maden.org/consulting/pub/xsl/xsd2html.xsl
- https://github.com/sgml/xsd2html2xml/blob/master/xsd2html.xsl
- http://www.crimulus.com/2012/04/13/xsl-template-for-converting-xsd-to-complete-xml-prototype-with-inline-specifications/
- https://github.com/sgml/inetmanet/blob/master/_scripts/xsd2html/xsd2html.xsl
- https://developer.salesforce.com/page/Enterprise_Upsert
- https://developer.salesforce.com/page/Enterprise_Query_All
- https://developer.salesforce.com/page/Enterprise_Describe_SObject
- https://developer.salesforce.com/page/Enterprise_Query_More
- https://developer.salesforce.com/page/Enterprise_Query
- https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_connector_querymore.htm
- https://help.salesforce.com/articleView?id=connected_app_continuous_ip.htm&type=5
- https://kb.builtwith.com/category/salesforce/
- A Record‑Triggered Flow fires when a record is created or updated.
- The Flow writes a row into a queue object (e.g.,
Sync_Queue__c). - Each row represents a unit of work that the external system will later pull.
- Minimum: As low as your external system allows (e.g., 5 seconds)
- Maximum: Any interval (e.g., 24 hours), depending on long‑poll timeout strategy
- The queue object stores all pending changes.
- Each row includes:
- Record ID
- Operation type
- Timestamp
- Processed flag
- The external system opens a long‑polling connection to Salesforce.
- It repeatedly queries the queue object for:
- New rows
- Unprocessed rows
- Rows newer than the last cursor timestamp
- The long‑poll request blocks until:
- New queue rows appear, or
- The timeout expires
-
A Connected App with OAuth 2.0
- Must support JWT, Web Server, or Username/Password flow.
-
API Enabled permission
- Required for REST access.
-
Read access to the queue object
- Object‑level and field‑level.
-
A stable cursor strategy
- Timestamp, record ID, or custom token.
-
A long‑polling–capable HTTP client
- Supports long timeouts, retries, and backoff.
-
Salesforce REST API access
- Uses
/services/data/vXX.X/queryor/queryAll.
- Uses
-
API limit planning
- Long‑polling consumes API calls.
-
A dedicated integration user
- Ensures stable permissions and predictable limits.
- When the long‑poll returns data:
- The external system retrieves the queued rows.
- It processes the records.
- It marks the queue rows as processed using REST PATCH/UPDATE.
Object_A__cObject_B__cObject_C__cObject_D__c
Each object has:
Field_1__cField_2__cField_3__c
- Create a Record‑Triggered Flow for each object.
- Set the trigger to When a record is created or updated.
- Add a Get Records element to check for an existing queue entry.
- Add a Create Records element to insert a new queue row if none exists.
- Map the 3 fields into the queue row’s structure.
- Save and activate the Flow.
- Repeat for all 4 objects.
- Create a new Custom Object named
Sync_Queue__c. - Add fields:
-
RecordId__c(Lookup or Text) -
Operation__c(Picklist: Create, Update, Delete) -
Timestamp__c(DateTime) -
Processed__c(Checkbox) -
BatchId__c(Text, optional)
-
- Grant Flow read/write permissions.
- Add a list view for “Pending Items.”
- Deploy to production.
-
Choose a supported API version
- Must exist in your org and support your integration needs.
-
Verify the version is available
- Call
GET /services/data/to list supported versions.
- Call
-
Set the version in your integration configuration
- Store as a configurable value (see sublist below).
-
Construct the base REST URL
https://<instance>.salesforce.com/services/data/vXX.X/query
-
Use the version consistently
- Across
/query,/queryAll,/sobjects,/composite, etc.
- Across
-
Document the version
- Include rationale and update instructions.
-
Setup → Integrations → API → API Versions
- Shows supported and deprecated versions.
-
Setup → Apex API Versions
- Shows version usage across metadata (informational).
-
Setup → Connected Apps →
- Displays OAuth scopes and compatibility notes.
-
Workbench → REST Explorer
- Lists all available versions under
/services/data/.
- Lists all available versions under
-
Environment Variables
SALESFORCE_API_VERSION=61.0
-
Application Config Files
-
config.yaml,settings.json,.env
-
-
Database Configuration Table
integration_settings.api_version
-
Kubernetes Secrets or ConfigMaps
apiVersion: "v61.0"
-
CI/CD Pipeline Variables
- Version injected at deploy time.
-
Monitor Salesforce release notes
- Deprecations announced ~1 year in advance.
-
Identify the next supported version
- Use
GET /services/data/.
- Use
-
Update integration configuration
- Change version in env vars, config files, or DB settings.
-
Regression test all SOQL queries
- Validate cursor logic, timestamp filters, and query behavior.
-
Validate long‑polling behavior
- Ensure timeouts, 204/408 responses, and rate limits behave the same.
-
Update documentation
- README, diagrams, runbooks.
-
Deploy the version update
- Through Dev → QA → UAT → Prod.
-
Remove references to deprecated versions
- Clean up old configs and tests.
-
Monitor after cutover
- Watch for 404, 400, 500, and 429 errors.
- API Enabled
- Read on all 4 source objects
- Read/Write on the queue object
- View All Data (optional but helpful)
- Manage Flows
- Customize Application
- Lower API limits in sandboxes
- Sparse sandbox data affecting long‑poll realism
- OAuth domain differences
- External endpoints blocking sandbox traffic
- Flow behavior differences with incomplete data
- Missing or invalid record IDs
- Duplicate records
- Null or malformed field values
- Inconsistent picklists
- Orphaned queue rows
- Incorrect timestamps
- Missing external identifiers for idempotency
| Integration Type | Cost Model | Limits | Rate Limits | Tier Availability | Introduced In | Release Date | Reference URL |
|---|---|---|---|---|---|---|---|
| Outbound Callouts (Apex HTTP) | Free (license-based) | 10 min timeout, 25 concurrent callouts | 25 concurrent long-running callouts | Enterprise, Performance, Unlimited, Developer | API v20.0 | Spring '11 (Feb 2011) | Apex Callouts Guide |
| Inbound REST API | License-based (daily quota) | 15K–100K+ calls/day depending on edition | 100K base + per-license allocation; 1K–5K per license | Professional (with API access), Enterprise, Performance, Unlimited, Developer | API v20.0 | Spring '11 (Feb 2011) | REST API Developer Guide |
| Webhooks via Apex REST + Sites | Free (self-hosted endpoint) | Apex governor limits, guest user access | No formal rate limit; governed by Apex execution and guest user throughput | Enterprise, Performance, Unlimited, Developer (via Sites or Experience Cloud) | API v22.0 | Winter '12 (Oct 2011) | Salesforce Webhooks Guide |
- https://help.salesforce.com/articleView?id=admin_insufficient_privileges_map.htm&type=5
- https://help.salesforce.com/articleView?id=How-to-prepare-for-additional-login-pools&language=en_US&type=1
- https://help.salesforce.com/articleView?id=networks_auth_configure_saml.htm&type=5
- https://help.salesforce.com/articleView?id=remoteaccess_asset_token_using_validating.htm&type=5
- https://help.salesforce.com/articleView?id=000193647&type=1
- https://help.salesforce.com/articleView?id=remoteaccess_oauth_SAML_bearer_flow.htm&type=5
- https://developer.salesforce.com/blogs/developer-relations/2013/05/mobile-development-with-connected-apps.html
- https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/intro_understanding_refresh_token_oauth.htm
- https://developer.salesforce.com/blogs/engineering/2015/11/restrict-access-lightning-applications-step-authentication.html
- https://help.salesforce.com/articleView?id=sso_delauthentication_configuring.htm&type=5
- https://releasenotes.docs.salesforce.com/en-us/summer17/release-notes/rn_networks_cms_connect.htm
- https://releasenotes.docs.salesforce.com/en-us/summer17/release-notes/rn_networks.htm
- https://developer.salesforce.com/blogs/developer-relations/2015/05/introducing-lightning-anydb-connector-data-democracy-fueled-salesforce-lightning-connect.html
- https://developer.salesforce.com/blogs/developer-relations/2015/08/rendering-github-json-data-salesforce.html
- https://developer.salesforce.com/page/Accessing_Salesforce_Data_from_a_Windows_Phone_App
- https://developer.salesforce.com/docs/atlas.en-us.mc-app-development.meta/mc-app-development/decode-jwt.htm
- https://help.salesforce.com/articleView?id=sso_tips.htm&type=5
- https://help.salesforce.com/articleView?id=design_your_app.htm&type=5
- https://help.salesforce.com/articleView?id=design_your_app.htm&type=5
- https://resources.docs.salesforce.com/206/latest/en-us/sfdc/pdf/salesforce_packaging_guide.pdf
- https://help.salesforce.com/articleView?id=packaging_component_attributes.htm&type=5
- https://help.salesforce.com/articleView?id=s1_branded_apps.htm&type=0
- https://en.wikipedia.org/wiki/Computer_telephony_integration
- https://resources.docs.salesforce.com/210/latest/en-us/sfdc/pdf/api_cti.pdf
- https://developer.salesforce.com/docs/atlas.en-us.210.0.api_cti.meta/api_cti/sforce_api_cti_intro.htm
- https://docs.aws.amazon.com/connect/latest/adminguide/salesforce-integration.html
- https://aws.amazon.com/blogs/apn/enabling-amazon-connect-with-salesforce-service-and-sales-cloud/
- https://docs.aws.amazon.com/connect/latest/adminguide/salesforce-integration.html
- https://trailhead.salesforce.com/en/modules/reports_dashboards/units/reports_dashboards_getting_started
- https://help.salesforce.com/articleView?id=000025306&type=1
- https://help.salesforce.com/articleView?id=000025298&language=en_US&type=1
- https://help.salesforce.com/articleView?id=000176208&language=en_US&type=1
- https://help.salesforce.com/articleView?id=lcc_javascript_buttons_scan.htm&type=5
- https://help.salesforce.com/articleView?id=000230650&language=en_US&type=1
- https://developer.salesforce.com/page/An_Introduction_to_Builder
- https://www.skuid.com/blog/drive-innovation-by-design/
- https://trailhead.salesforce.com/projects/migrate-a-classic-app-to-lightning-experience-with-declarative-tools/steps/set-up-your-salesforce-org
- https://trailhead.salesforce.com/en/modules/lex_migration_introduction/units/lex_migration_introduction_rightforme
- https://engineering.salesforce.com/open-sourcing-design-system-react-9be45b8bb127?gi=ea5741f2ccb
- https://engineering.salesforce.com/open-sourcing-violet-a-voice-application-framework-744f7c660655
- https://developer.salesforce.com/blogs/2018/05/using-salesforce-cli-with-windows-subsystem-for-linux-in-10-easy-steps.html
- https://force.desk.com/customer/portal/articles/2659738-how-to-get-a-password-for-my-trailhead-playground?b_id=13478
- https://force.desk.com/customer/en/portal/topics/1063710-trailhead-challenges/articles?b_id=13478
- https://partners.salesforce.com/s/education/general/Admin_Training
- https://salesforce.stackexchange.com/questions/213736/api-access-to-trailhead-data
- https://www.linkedin.com/pulse/how-to-show-off-your-trailhead-activity-linkedin-profile-lauren-todt/
- Show Trailhead badges or Salesforce certifications on your Community Profile
- https://powerofus.force.com/s/article/NPSP-Documentation
- http://developer.salesforce.org/Cumulus/Contributor/Developer-Edition-Salesforce-Instance.html
- https://s3-us-west-2.amazonaws.com/sfdo-docs/npsp_upgrade_guide.pdf
- https://developer.salesforce.com/page/Nonprofit_Starter_Pack_Account_Model
- https://salesforce.stackexchange.com/questions/279747/nonprofit-success-pack-npsp-filter-group/279748#279748 https://github.com/americanexpress/jest-image-snapshot/issues/36
- https://tech.ucsf.edu/salesforce-ucsf-build-simple-crms-fast
- http://www4.uky.edu/lifecycle/sites/www.uky.edu.lifecycle/files/Salesforce.org%20for%20UK%20%28screenshots%29%201.17.17%20%281%29.pdf
- https://aggieservice.ucdavis.edu/s/article/How-to-Access-the-Knowledge-Base
- http://academic-alliance.salesforce.com/
- https://www.salesforce.org/salesforces-academic-alliance/
It represents an early-stage idea or proposal for a gift before it becomes a formal commitment.
Use case: A major gift officer records a donor’s verbal interest in funding a scholarship.
It links a DonorGiftConcept to an Opportunity when the idea becomes a real fundraising effort.
Use case: A conceptual gift idea is converted into an Opportunity and must remain traceable.
It provides consolidated giving information for a donor.
Use case: A gift officer reviews lifetime giving and commitments before a donor meeting.
It formalizes the terms of a donor’s gift, including restrictions and schedules.
Use case: A donor signs a multi-year pledge agreement.
It tracks who is responsible for stewarding a gift.
Use case: A stewardship manager assigns a staff member to steward a major gift.
It records specific stewardship actions taken for a gift.
Use case: Logging the sending of an annual impact report.
It represents a donor’s pledge or long-term commitment to give.
Use case: A donor pledges $50,000 over five years.
It defines the installment schedule for fulfilling a pledge.
Use case: Annual installments for a multi-year pledge.
It maintains an audit trail of changes to a GiftCommitment.
Use case: Tracking updates to pledge amounts for compliance.
It represents gifts entered individually or in batches before processing.
Use case: A gift processor enters mailed checks before posting them.
It groups multiple GiftEntry records into a batch for review and posting.
Use case: Daily batches of online donations.
It specifies how a gift should be allocated, such as to a fund or program.
Use case: A donor restricts a gift to the STEM Scholarship Fund.
It automatically assigns default designations based on context.
Use case: All gifts from a specific campaign default to the General Fund.
It automatically assigns soft credits for recurring or automated transactions.
Use case: A recurring foundation gift soft-credits individual family members.
It stores actuarial calculations for planned gifts.
Use case: Recording life expectancy and discount rate calculations for a charitable remainder trust.
It stores metadata about document generation jobs.
Use case: Logging details of a generated gift agreement PDF.
These objects have no native equivalent in standard Salesforce and would require custom objects to replicate.
It represents a cohort or group within a program.
Use case: “Job Training Spring 2026 Cohort.”
It represents an intended outcome for a program.
Use case: “Client obtains full-time employment.”
It represents a participant’s actual outcome.
Use case: A participant achieves the employment outcome.
It represents a service offering within a program.
Use case: “Resume Workshop” or “Financial Coaching Session.”
It represents the delivery of a service to a participant.
Use case: A client attends a resume workshop on April 10.
It represents a recurring or scheduled service.
Use case: Weekly financial coaching sessions every Tuesday.
It represents a structured plan for a client receiving services.
Use case: A case manager creates a plan with goals for a client.
It represents a goal within a case plan.
Use case: “Obtain stable housing.”
It represents a task required to achieve a goal.
Use case: “Submit housing assistance application.”
It represents a structured assessment or questionnaire.
Use case: A housing stability assessment.
It represents a question within an assessment.
Use case: “How many nights have you slept in a shelter this month?”
It represents a participant’s response to an assessment question.
Use case: The client answers “10 nights.”
It represents a rule determining whether a participant qualifies for a program.
Use case: Income must be below a threshold.
It represents a referral into a program or service.
Use case: A partner agency refers a client to a food assistance program.
| Feature | Limit |
|---|---|
| API Calls | 100,000 per 24-hour period |
| Storage | 10GB per organization + 20MB per user |
| Workflow Rules | 500 active rules per organization |
| Validation Rules | 100 per object |
| Custom Fields | 500 per object |
| Custom Objects | 2,000 per organization |
| Reports | 2,000 per organization |
| Dashboards | 500 per organization |
| Scheduled Jobs | 100 active jobs per organization |
| Attachments | 25MB per file, 2GB for feed attachments |
| Content Deliveries | 50GB bandwidth per rolling 24-hour window |
| Category Groups | 5 active groups at a time |
| Custom Apps | 260 per organization |
| Big Objects | 100 per organization |
- https://developer.salesforce.com/files/Trailhead-BASS-BecomeaSalesforceSpeakerChecklist.pdf
- https://developer.salesforce.com/blogs/engineering/2015/06/imposter-syndrome-exist-software-engineering-roles.html
- https://www.salesforce.com/blog/2017/07/citizen-development-it-innovation.html
- https://www.salesforce.com/ca/blog/2015/11/blueprint-for-ab-tests.html
- http://ieeexplore.ieee.org/document/7111910/
- https://github.com/mwilliams/lcthw-book/blob/master/learn-c-the-hard-waych55.txt
https://www.salesforce.com/content/dam/web/en_us/www/documents/datasheets/ds-uas.pdf https://help.salesforce.com/servlet/servlet.FileDownload?file=015300000037bACAAY https://developer.salesforce.com/blogs/developer-relations/2014/12/salesforce1-enterprise-environment-management.html https://help.salesforce.com/articleView?id=push_scheduling_upgrades.htm&type=5 https://engineering.salesforce.com/how-the-salesforce-technology-products-organization-runs-on-salesforce-725b11a0a638 https://www.salesforce.com/blog/2018/04/tips-for-launching-implementations.html https://www.salesforce.com/blog/2017/05/how-to-successfully-transform-business.html https://www.salesforce.com/blog/2017/05/confronting-the-danger-of-legacy-attitudes.html https://www.salesforce.com/blog/2018/03/citizen-development-untold-perks-damian-ofarrill.html https://engineering.salesforce.com/autodesks-best-practices-for-continuous-innovation-with-salesforce-4f2971715a5e https://www.salesforce.com/au/blog/2018/10/technology-change-management--5-steps-to-success.html https://www.salesforce.com/blog/2017/07/scaling-sales-team-3-to-300.html
- https://blog.hubspot.com/marketing/excel-formulas-keyboard-shortcuts
- https://blog.hubspot.com/marketing/microsoft-excel
- https://cdn2.hubspot.net/hubfs/137828/Excel-Tips-Importing-Your-Data-To-Your-CRM.pdf
- https://knowledge.hubspot.com/workflows/add-data-to-google-sheets-with-workflows
-
Aggregation
-
RSS => XSLT
-
Asset management
-
imgur => cloudflare
-
Access control and security
-
Github API => Chrome extension UI
-
Workflow management
-
Cloud9 => Heroku
-
Version control
-
Git
-
Translations
-
MessageFormat
-
Personalization
-
MessageFormat + IndexedDB
-
Single-page applications
-
JSON => React
-
Mobile apps
-
JSON => React Native
-
Roku apps
-
JSON => XML +> BrightScript What does "decoupled" mean? Content authoring and editorial functionality is separate from front-end development capabilities. Content is stored within a shared repository that both IT and marketing teams can access.
-
https://helpx.adobe.com/experience-manager/6-3/forms/using/supporting-new-language-localization.html
-
https://helpx.adobe.com/experience-manager/6-2/sites/developing/using/ht-projects-maven.html
-
https://helpx.adobe.com/experience-manager/using/querying-experience-manager-data-using1.html
-
https://helpx.adobe.com/experience-manager/using/oak-login.html
-
https://helpx.adobe.com/experience-manager/using/creating-htl-component.html
-
https://helpx.adobe.com/digital-publishing-solution/help/content-producer-service-sdk.html
-
https://helpx.adobe.com/experience-manager/kb/saml-demo.html
-
https://helpx.adobe.com/digital-publishing-solution/help/identity-providers.html
-
https://helpx.adobe.com/digital-publishing-solution/help/direct-entitlement.html
-
http://wwwimages.adobe.com/content/dam/acom/en/security/pdfs/adobe-aem-managed-services-security.pdf
-
https://sling.apache.org/apidocs/sling5/constant-values.html
-
https://helpx.adobe.com/experience-manager/6-3/assets/using/media-handlers.html
-
https://helpx.adobe.com/aem-forms/6-1/javadocs/com/adobe/aemds/guide/common/package-tree.html
-
https://help.adobe.com/en_US/flex/using/WS460ee381960520ad-2811830c121e9107ecb-7fff.html
-
https://helpx.adobe.com/experience-manager/using/osgi_getting_started.html
-
https://helpx.adobe.com/experience-manager/6-2/sites/deploying/using/troubleshoot-rep.html
-
http://www.tothenew.com/blog/content-migration-in-aem-using-slingpostservlet/
-
https://helpx.adobe.com/experience-manager/6-4/sites/developing/using/model-data.html
https://www.cc.gatech.edu/~isbell/papers/isbell-discovery-puc-2006.pdf http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.141.5734&rep=rep1&type=pdf https://www.umbc.edu/rssipl/people/aplaza/Papers/Journals/2011.JSTARS.Review.pdf
https://sebastiandedeyne.com/react-for-vue-developers/ https://marmelab.com/blog/2019/03/13/react-dependency-injection.html https://vuejs.org/v2/guide/components-dynamic-async.html
https://www.apnews.com/350bb628d1f7468489be90f4f7539181
+-----------------------------------------------------------------------+
| 1. Curated Data |
|-----------------------------------------------------------------------|
| - Curated datasets (CSV, parquet, JSON, etc.) |
| - Validated for completeness and referential integrity |
| - Approved, non-synthetic source data |
+--------------------------------------+--------------------------------+
|
| (curated inserts)
v
+--------------------------------------+--------------------------------+
| 2. Seeder Loads Postgres |
|-----------------------------------------------------------------------|
| - Connects to Postgres |
| - Inserts curated records into domain tables |
| - Preserves parent/child relationships |
| - Commits curated data as authoritative source |
+--------------------------------------+--------------------------------+
|
| SQL (psycopg2 / SQLAlchemy)
v
+--------------------------------------+--------------------------------+
| Postgres Database |
|-----------------------------------------------------------------------|
| - Stores curated domain data |
| - Stores Bulk API job logs |
| - Stores success/error responses |
+--------------------------------------+--------------------------------+
^
|
| SQL queries (read curated data)
|
+--------------------------------------+--------------------------------+
| 3. Python Bulk Loader Service |
|-----------------------------------------------------------------------|
| - Reads curated data from Postgres |
| - Transforms records into Bulk API CSV/JSON |
| - Creates Salesforce Bulk API jobs |
| - Uploads batches and polls job status |
| - Normalizes success/error results |
| - Writes logs back into Postgres |
+----------------------+-------------------------------+----------------+
| ^
| HTTPS (Bulk API) |
v |
+----------------------+-------------------------------+----------------+
| 4. Salesforce Bulk API (V1/V2) |
|-----------------------------------------------------------------------|
| - Receives batched CSV/JSON payloads |
| - Inserts/updates Salesforce records |
| - Returns per-row success/error results |
+----------------------+-------------------------------+----------------+
|
| (results returned to Python)
v
+----------------------+-------------------------------+----------------+
| 5. Python Logs Results to Postgres |
|-----------------------------------------------------------------------|
| - Job IDs, batch IDs, timestamps |
| - Success rows |
| - Error rows + error messages |
| - Retry metadata |
| - Correlation IDs |
+----------------------+-------------------------------+----------------+
(separate inbound path)
-------------------------
| |
v |
+----------------------+-------------------------------+----------------+
| 6. Salesforce External Services (OpenAPI) |
|-----------------------------------------------------------------------|
| - Imports OpenAPI schema for Python service |
| - Auto-generates invocable actions for Flows/Apex |
| - Calls Python service for real-time operations |
| - Python logs these calls into Postgres as well |
+-----------------------------------------------------------------------+