Tool | Features |
---|---|
Apex Flex Queue | Use the Apex Flex Queue page to view and reorder all batch jobs that have a status of Holding. Or reorder your batch jobs programmatically using Apex code. |
Apex Job Queue | Lists all Apex jobs (e.g. batch, queueable, future) that have been submitted for execution |
Background Jobs | Monitor system background jobs in your organization |
Bulk Data Load Jobs | Track the status of bulk data load jobs (from dataloader.io or custom program using bulk API ) |
Case Escalation Queue | Monitor the time-based action placed on the Case Escalation Queue |
[FieldTrip](https://appexchange. |
Execute these lines:
sudo sh -c 'cat > /etc/apt/sources.list.d/focal-dell.list << EOF
deb http://dell.archive.canonical.com/updates/ focal-dell public
deb http://dell.archive.canonical.com/updates/ focal-oem public
deb http://dell.archive.canonical.com/updates/ focal-somerville public
deb http://dell.archive.canonical.com/updates/ focal-somerville-melisa public
EOF'
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F9FDA6BED73CDC22
This guide is intended for use with Chrome, but this feature exists in several browsers. It will walk you through adding a cusom SFCC B2C search engine shortcut to your Chrome profile.
Updated 2023-07-30
Step 1 In Chrome, go to Settings > Search engine > Manage search engines (Or just navigate to: chrome://settings/searchEngines)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//From Salesforce documentation: | |
public void sendEmail(String ToAddress) { | |
// First, reserve email capacity for the current Apex transaction to ensure | |
// that we won't exceed our daily email limits when sending email after | |
// the current transaction is committed. | |
Messaging.reserveSingleEmailCapacity(1); | |
// Processes and actions involved in the Apex transaction occur next, | |
// which conclude with sending a single email. |