SlideShare une entreprise Scribd logo
1  sur  54
Télécharger pour lire hors ligne
Salesforce Release
Webinar
Summer 22 Highlights
Keir Bowden, CTO
@bob_buzzard
www.linkedin.com/in/keirbowden
● Summer 22 Release
○ Fond Farewells
○ General
○ Analytics
○ Customization
○ Development
○ Experiences
○ Sales
○ Service
○ Beta
● Questions
Agenda
Fond Farewells
Crossing the River Styx
Legacy API versions 7.0 - 20.0
● Will error
Legacy API versions 21.0 - 30.0 deprecated
● No longer supported
● Will error in Summer 23 release
Salesforce for Outlook
● June 2024
General
Lightning Experience
• Latest stable Edge Chromium, Chrome, Firefox, Safari
Classic
• Internet Explorer 11
• Latest stable Edge Chromium, Chrome, Firefox, Safari
CRM Analytics
• Latest stable Edge Chromium, Chrome, Firefox - not Safari
sforce.co/3OFE0bh
Browsers
Einstein Search
View searchable objects and
fields
Setup ->
Einstein ->
Einstein Search ->
Search Manager
Einstein
Natural language search now covers knowledge articles
Einstein Data Exploration Consent
• Allow Salesforce data scientists to explore and improve your data
Search Layouts renamed in Salesforce Classic
• Now List View Button Layout
Analytics
Enhanced Report Type Selector GA
Edit Multiple Fields on the Report Run Page GA
Inline Edit fields
• Pencil icon = editable
• Lock icon = not editable
Multiple columns
Multiple fields
Save in one operation
Can opt out
Median Function in Summaries
Limit Results in Tabular Reports
Customization
Restriction Rules
External Objects supported
No longer stop users from creating/editing a record
• Once created/changed, they may be blocked!
View/Modify All now disregards restriction rules
• Parity with View/Modify All Data
Criteria now supports picklists
• Not multi-select
View custom picklist fields with > 4000 inactive values
• Email sent on request
• Settings -> Data -> Picklist Settings
Duplicate Picklist Entries are named
Picklists
Dynamic Related Lists
Customize and filter related lists in lightning app builder
• No more switching back to page layout editor
• Max two related lists for same relationship
• Different filters
• New Dynamic Related List - Single component
Dynamic Related Lists
Other
Set expiration dates for Permission Sets and Groups
• Enhanced user interface
• Release update - must be enabled
Development
AKA DOM!
Attach directly to host element
Not encapsulated in shadow DOM
• Accessible to other elements
• Accepts global styling
Light DOM LWC can contain Shadow DOM LWC, and vice-versa
Not available for base (lightning- namespace) components
Lightning Web Component Light DOM
Enable light dom via renderMode static field
export default class LightDomApp extends LightningElement {
static renderMode = 'light'; // the default is 'shadow'
}
Use lwc:render-mode template directive in <template> tag:
<template lwc:render-mode='light'>
...
</template>
Lightning Web Component Light DOM
New prompt, confirm and alert components - LWC and Aura
• LightningPrompt
• LightningConfirm
• LightningAlert
Avoid problems with the end of cross origin (iframe) support
Create via JavaScript - requires async function
await LightningAlert.open({
message: 'this is the alert message',
theme: 'error',
'Error!', // this is the header text
});
Lightning Components
Performance Assistant
Learn
• Learn the basics of scalability and performance testing
Prepare
• Create your performance testing strategy and test plan
• Schedule your test
Analyze and Optimize
• Interpret test results
• Identify performance hotspots
• Optimize your solution
Performance Assistant
"Fairer" Apex test resource distribution
Group multiple platform events into a single channel
• CometD/Streaming API clients only
Other
Experiences
Create multilingual Lightning Web Runtime sites
• Up to 20 languages per site
• Standard component text entry fields are translatable
• Mark String properties translatable for custom components
Language determined from browser settings
• Previously showed site in default language
Lightning Web Runtime
Users can deactivate their account from Aura sites
• Customizable User Settings component
• Enable User Self Deactivate in Setup -> User Management settings
Add links to Content/Layout Components - LWR Sites
• Button, Contact Form, Lead Form
• Any layout component that can be a link
• Choose type (link, email, phone) and source (page, external link, data binding)
Flows available in LWR sites
• Cannot contain Aura components
Components
Toggle Locker Service
• isLockerServiceEnabled in mainAppPage.json config file
• Aura and LWR sites
Optional URL Query Parameters for Aura sites
• Previously if recordId missing, {!recordId} became a string literal!
• Now evaluates to an empty string
Developer
Guest User Removed from Permission Sets/Groups associated with Permission Set Licenses where
• View or Modify All permission is granted
• Edit or Delete standard objects
Permission Set License is not removed
Aura/LWR/Visualforce sites
Release update
• Automatically applied in Winter 23
• Test in Sandbox asap if affected
Guest User
Run Flows permission removed in Spring 23
• Grant access via profile or permission sets
Aura/LWR/Visualforce sites
Migrate to new permission structure
• Setup -> Process Automation -> Flows
Guest User
Sales
Customise Cumulative Rollup Names
Include/Exclude more Opportunity Fields from Forecast
• Filter on standard number, currency and picklist fields
Collaborative Forecasting
View Corporate and Forecast Currency Units
Corporate Currency in brackets
Collaborative Forecasting
Includes recommended actions
Einstein Deal Insights
Use existing org-wide email address as default No-Reply address
Verify email address to send email through Salesforce
• Verification not always required
• Mature orgs may have unverified addresses
• Will receive email to verify address
• Cannot send until this is complete - starting Winter 23
Email
Overdue task Due Dates appear in red
Activities
Manage automatic associations from the activity timeline
Activities
Now includes the following (formerly add-on) features:
• High Velocity Sales
• Inbox (Gmail/Outlook)
• Sales Cloud Einstein
• Einstein Conversation Insights
• Einstein Activity Capture
Performance/Unlimited Edition
Enable Person Accounts without Contacting Salesforce Support
• At least one Account record type
• Profiles with Read on Accounts also have Read on Contacts
• Org-wide default for Contact is Controlled by Parent, or Account and Contact are Private
Manually share Campaign record with another user
Other
Service
Check Availability for Routing Action
• Route based on number of agents and item backlog
Play custom sounds when work is assigned
Auto Accept at the service channel level
Train reply recommendations in 16 more languages
Flow Create Article Recommendations Action
Routing / Einstein
Milestone timer stops when case exits entitlement process
• No requirement to click Is Stopped
Messaging learning map - sforce.co/3wJnnmN
Other
Improved Conversation Canvas
• Drag and drop from component library
• Drag to re-order dialogs
Improved standard reports
• 16 new
• Updated existing
• In new folder - Einstein Bot Reports Summer ’22
Bots
Beta
Filter Report Types for Selected Objects
Custom Address Fields
Requires State and Country/Territory Picklists Enabled
Setup -> User Interface
New custom field type
Custom Address Fields
Clean Up Inactive Picklist Values
Setup -> Picklist Settings
Any picklist custom field
Background
task
SOQL Queries:
SELECT Name, Public_Field__c from Account WITH USER_MODE
SELECT Name, Hidden_Field__c from Account WITH SYSTEM_MODE
DML Operation:
Account acc=new Account(Name='Test Account');
insert as user acc;
Contact ctct=new Contact(AccoundId=acc.id,
FirstName='Test', LastName='Contact');
insert as system ctct;
User Mode Database Operations
Here endeth the lesson
Release Readiness
sforce.co/3sPPMXj
• Release in a Box
• Release Notes
• Demo videos
Trailhead badge - sforce.co/3wAVHk4
Questions?

Contenu connexe

Tendances

Session 1: INTRODUCTION TO SALESFORCE
Session 1: INTRODUCTION TO SALESFORCESession 1: INTRODUCTION TO SALESFORCE
Session 1: INTRODUCTION TO SALESFORCESmritiSharan1
 
Endless Use Cases with Salesforce Experience Cloud by Dar Veverka
Endless Use Cases with Salesforce Experience Cloud by Dar VeverkaEndless Use Cases with Salesforce Experience Cloud by Dar Veverka
Endless Use Cases with Salesforce Experience Cloud by Dar VeverkaAlesia Dvorkina
 
Salesforce Service Cloud
Salesforce Service CloudSalesforce Service Cloud
Salesforce Service Cloudsharad soni
 
Why Flow with Salesforce Flow
Why Flow with Salesforce FlowWhy Flow with Salesforce Flow
Why Flow with Salesforce FlowAjeet Singh
 
Salesforce Presentation
Salesforce PresentationSalesforce Presentation
Salesforce PresentationChetna Purohit
 
Partner Community User Guide for Consulting Partners
Partner Community User Guide for Consulting PartnersPartner Community User Guide for Consulting Partners
Partner Community User Guide for Consulting PartnersSalesforce Partners
 
Salesforce Overview For Beginners/Students
Salesforce Overview For Beginners/StudentsSalesforce Overview For Beginners/Students
Salesforce Overview For Beginners/StudentsSujesh Ramachandran
 
Salesforce sales cloud solutions
Salesforce sales cloud solutionsSalesforce sales cloud solutions
Salesforce sales cloud solutionsJanBask LLC
 
Important Salesforce Trends to Watch Out for in 2022
Important Salesforce Trends to Watch Out for in 2022Important Salesforce Trends to Watch Out for in 2022
Important Salesforce Trends to Watch Out for in 2022Cloud Analogy
 
How Salesforce CRM Improves Your Sales Pipeline?
How Salesforce CRM Improves Your Sales Pipeline?How Salesforce CRM Improves Your Sales Pipeline?
How Salesforce CRM Improves Your Sales Pipeline?Cloud Analogy
 
Migrating Visualforce Pages to Lightning
Migrating Visualforce Pages to LightningMigrating Visualforce Pages to Lightning
Migrating Visualforce Pages to LightningSalesforce Developers
 
Flow builder pros and cons
Flow builder pros and consFlow builder pros and cons
Flow builder pros and consMelissa Shook
 
Salesforce Marketing Cloud Training | Salesforce Training For Beginners - Mar...
Salesforce Marketing Cloud Training | Salesforce Training For Beginners - Mar...Salesforce Marketing Cloud Training | Salesforce Training For Beginners - Mar...
Salesforce Marketing Cloud Training | Salesforce Training For Beginners - Mar...Edureka!
 
Sharing and security in Salesforce
Sharing and security in SalesforceSharing and security in Salesforce
Sharing and security in SalesforceSaurabh Kulkarni
 

Tendances (20)

Session 1: INTRODUCTION TO SALESFORCE
Session 1: INTRODUCTION TO SALESFORCESession 1: INTRODUCTION TO SALESFORCE
Session 1: INTRODUCTION TO SALESFORCE
 
How Salesforce Trains Sales Reps
How Salesforce Trains Sales RepsHow Salesforce Trains Sales Reps
How Salesforce Trains Sales Reps
 
Endless Use Cases with Salesforce Experience Cloud by Dar Veverka
Endless Use Cases with Salesforce Experience Cloud by Dar VeverkaEndless Use Cases with Salesforce Experience Cloud by Dar Veverka
Endless Use Cases with Salesforce Experience Cloud by Dar Veverka
 
Salesforce Service Cloud
Salesforce Service CloudSalesforce Service Cloud
Salesforce Service Cloud
 
Why Flow with Salesforce Flow
Why Flow with Salesforce FlowWhy Flow with Salesforce Flow
Why Flow with Salesforce Flow
 
Salesforce Presentation
Salesforce PresentationSalesforce Presentation
Salesforce Presentation
 
Partner Community User Guide for Consulting Partners
Partner Community User Guide for Consulting PartnersPartner Community User Guide for Consulting Partners
Partner Community User Guide for Consulting Partners
 
Salesforce Overview For Beginners/Students
Salesforce Overview For Beginners/StudentsSalesforce Overview For Beginners/Students
Salesforce Overview For Beginners/Students
 
Pardot
PardotPardot
Pardot
 
Salesforce sales cloud solutions
Salesforce sales cloud solutionsSalesforce sales cloud solutions
Salesforce sales cloud solutions
 
Top Benefits of Salesforce in Business
Top Benefits of Salesforce in BusinessTop Benefits of Salesforce in Business
Top Benefits of Salesforce in Business
 
Important Salesforce Trends to Watch Out for in 2022
Important Salesforce Trends to Watch Out for in 2022Important Salesforce Trends to Watch Out for in 2022
Important Salesforce Trends to Watch Out for in 2022
 
How Salesforce CRM Improves Your Sales Pipeline?
How Salesforce CRM Improves Your Sales Pipeline?How Salesforce CRM Improves Your Sales Pipeline?
How Salesforce CRM Improves Your Sales Pipeline?
 
Salesforce overview
Salesforce overviewSalesforce overview
Salesforce overview
 
Migrating Visualforce Pages to Lightning
Migrating Visualforce Pages to LightningMigrating Visualforce Pages to Lightning
Migrating Visualforce Pages to Lightning
 
Flow builder pros and cons
Flow builder pros and consFlow builder pros and cons
Flow builder pros and cons
 
Salesforce
SalesforceSalesforce
Salesforce
 
Salesforce project
Salesforce projectSalesforce project
Salesforce project
 
Salesforce Marketing Cloud Training | Salesforce Training For Beginners - Mar...
Salesforce Marketing Cloud Training | Salesforce Training For Beginners - Mar...Salesforce Marketing Cloud Training | Salesforce Training For Beginners - Mar...
Salesforce Marketing Cloud Training | Salesforce Training For Beginners - Mar...
 
Sharing and security in Salesforce
Sharing and security in SalesforceSharing and security in Salesforce
Sharing and security in Salesforce
 

Similaire à Salesforce Summer 22 Release Webinar

Salesforce Winter 23 Release Webinar Slide Deck
Salesforce Winter 23 Release Webinar Slide DeckSalesforce Winter 23 Release Webinar Slide Deck
Salesforce Winter 23 Release Webinar Slide Deckbrightgenss
 
Salesforce Spring 22 Webinar
Salesforce Spring 22 WebinarSalesforce Spring 22 Webinar
Salesforce Spring 22 Webinarbrightgenss
 
BrightGen's Salesforce Summer 21 release webinar
BrightGen's Salesforce Summer 21 release webinarBrightGen's Salesforce Summer 21 release webinar
BrightGen's Salesforce Summer 21 release webinarbrightgenss
 
Salesforce Spring 23 Webinar
Salesforce Spring 23 WebinarSalesforce Spring 23 Webinar
Salesforce Spring 23 Webinarbrightgenss
 
BrightGen's Salesforce Winter 22 Webinar
BrightGen's Salesforce Winter 22 WebinarBrightGen's Salesforce Winter 22 Webinar
BrightGen's Salesforce Winter 22 Webinarbrightgenss
 
Winter15 Release Webinar Deck
Winter15 Release Webinar DeckWinter15 Release Webinar Deck
Winter15 Release Webinar Deckbrightgenss
 
Summer14 Salesforce Release Highlights Webinar
Summer14 Salesforce Release Highlights WebinarSummer14 Salesforce Release Highlights Webinar
Summer14 Salesforce Release Highlights Webinarbrightgenss
 
Winter 16 Webinar Slide Deck
Winter 16 Webinar Slide DeckWinter 16 Webinar Slide Deck
Winter 16 Webinar Slide Deckbrightgenss
 
Spring 21 Salesforce Release Webinar
Spring 21 Salesforce Release WebinarSpring 21 Salesforce Release Webinar
Spring 21 Salesforce Release Webinarbrightgenss
 
SPSNYC SharePoint Worst Practices
SPSNYC SharePoint Worst PracticesSPSNYC SharePoint Worst Practices
SPSNYC SharePoint Worst PracticesScott Hoag
 
Power of Flows and Prepare for Salesforce Admin Certification
Power of Flows and Prepare for Salesforce Admin CertificationPower of Flows and Prepare for Salesforce Admin Certification
Power of Flows and Prepare for Salesforce Admin CertificationNishant Singh Panwar
 
BrightGen Spring 16 Release Webinar
BrightGen Spring 16 Release WebinarBrightGen Spring 16 Release Webinar
BrightGen Spring 16 Release Webinarbrightgenss
 
BrightGen's Summer 16 Release Webinar
BrightGen's Summer 16 Release WebinarBrightGen's Summer 16 Release Webinar
BrightGen's Summer 16 Release Webinarbrightgenss
 
IBM Social Business Toolkit
IBM Social Business ToolkitIBM Social Business Toolkit
IBM Social Business ToolkitVan Staub, MBA
 
Choosing the Right Salesforce Integration: The Questions You Should Ask - A C...
Choosing the Right Salesforce Integration: The Questions You Should Ask - A C...Choosing the Right Salesforce Integration: The Questions You Should Ask - A C...
Choosing the Right Salesforce Integration: The Questions You Should Ask - A C...Cyber Group
 
Building Responsive Intranet using Sharepoint Framework solutions - Asish Pad...
Building Responsive Intranet using Sharepoint Framework solutions - Asish Pad...Building Responsive Intranet using Sharepoint Framework solutions - Asish Pad...
Building Responsive Intranet using Sharepoint Framework solutions - Asish Pad...Asish Padhy
 
Denver Atlassian Community 5-minute Plugins
Denver Atlassian Community 5-minute PluginsDenver Atlassian Community 5-minute Plugins
Denver Atlassian Community 5-minute Pluginsdenveraug
 
SharePoint as Development Platform for the Modern Intranet
SharePoint as Development Platform for the Modern IntranetSharePoint as Development Platform for the Modern Intranet
SharePoint as Development Platform for the Modern IntranetHaaron Gonzalez
 
Integrating SharePoint 2010, 2013 and Visual Studio Lightswitch by Rob Windso...
Integrating SharePoint 2010, 2013 and Visual Studio Lightswitch by Rob Windso...Integrating SharePoint 2010, 2013 and Visual Studio Lightswitch by Rob Windso...
Integrating SharePoint 2010, 2013 and Visual Studio Lightswitch by Rob Windso...SPTechCon
 
O365Con18 - Hybrid SharePoint Deep Dive - Thomas Vochten
O365Con18 - Hybrid SharePoint Deep Dive - Thomas VochtenO365Con18 - Hybrid SharePoint Deep Dive - Thomas Vochten
O365Con18 - Hybrid SharePoint Deep Dive - Thomas VochtenNCCOMMS
 

Similaire à Salesforce Summer 22 Release Webinar (20)

Salesforce Winter 23 Release Webinar Slide Deck
Salesforce Winter 23 Release Webinar Slide DeckSalesforce Winter 23 Release Webinar Slide Deck
Salesforce Winter 23 Release Webinar Slide Deck
 
Salesforce Spring 22 Webinar
Salesforce Spring 22 WebinarSalesforce Spring 22 Webinar
Salesforce Spring 22 Webinar
 
BrightGen's Salesforce Summer 21 release webinar
BrightGen's Salesforce Summer 21 release webinarBrightGen's Salesforce Summer 21 release webinar
BrightGen's Salesforce Summer 21 release webinar
 
Salesforce Spring 23 Webinar
Salesforce Spring 23 WebinarSalesforce Spring 23 Webinar
Salesforce Spring 23 Webinar
 
BrightGen's Salesforce Winter 22 Webinar
BrightGen's Salesforce Winter 22 WebinarBrightGen's Salesforce Winter 22 Webinar
BrightGen's Salesforce Winter 22 Webinar
 
Winter15 Release Webinar Deck
Winter15 Release Webinar DeckWinter15 Release Webinar Deck
Winter15 Release Webinar Deck
 
Summer14 Salesforce Release Highlights Webinar
Summer14 Salesforce Release Highlights WebinarSummer14 Salesforce Release Highlights Webinar
Summer14 Salesforce Release Highlights Webinar
 
Winter 16 Webinar Slide Deck
Winter 16 Webinar Slide DeckWinter 16 Webinar Slide Deck
Winter 16 Webinar Slide Deck
 
Spring 21 Salesforce Release Webinar
Spring 21 Salesforce Release WebinarSpring 21 Salesforce Release Webinar
Spring 21 Salesforce Release Webinar
 
SPSNYC SharePoint Worst Practices
SPSNYC SharePoint Worst PracticesSPSNYC SharePoint Worst Practices
SPSNYC SharePoint Worst Practices
 
Power of Flows and Prepare for Salesforce Admin Certification
Power of Flows and Prepare for Salesforce Admin CertificationPower of Flows and Prepare for Salesforce Admin Certification
Power of Flows and Prepare for Salesforce Admin Certification
 
BrightGen Spring 16 Release Webinar
BrightGen Spring 16 Release WebinarBrightGen Spring 16 Release Webinar
BrightGen Spring 16 Release Webinar
 
BrightGen's Summer 16 Release Webinar
BrightGen's Summer 16 Release WebinarBrightGen's Summer 16 Release Webinar
BrightGen's Summer 16 Release Webinar
 
IBM Social Business Toolkit
IBM Social Business ToolkitIBM Social Business Toolkit
IBM Social Business Toolkit
 
Choosing the Right Salesforce Integration: The Questions You Should Ask - A C...
Choosing the Right Salesforce Integration: The Questions You Should Ask - A C...Choosing the Right Salesforce Integration: The Questions You Should Ask - A C...
Choosing the Right Salesforce Integration: The Questions You Should Ask - A C...
 
Building Responsive Intranet using Sharepoint Framework solutions - Asish Pad...
Building Responsive Intranet using Sharepoint Framework solutions - Asish Pad...Building Responsive Intranet using Sharepoint Framework solutions - Asish Pad...
Building Responsive Intranet using Sharepoint Framework solutions - Asish Pad...
 
Denver Atlassian Community 5-minute Plugins
Denver Atlassian Community 5-minute PluginsDenver Atlassian Community 5-minute Plugins
Denver Atlassian Community 5-minute Plugins
 
SharePoint as Development Platform for the Modern Intranet
SharePoint as Development Platform for the Modern IntranetSharePoint as Development Platform for the Modern Intranet
SharePoint as Development Platform for the Modern Intranet
 
Integrating SharePoint 2010, 2013 and Visual Studio Lightswitch by Rob Windso...
Integrating SharePoint 2010, 2013 and Visual Studio Lightswitch by Rob Windso...Integrating SharePoint 2010, 2013 and Visual Studio Lightswitch by Rob Windso...
Integrating SharePoint 2010, 2013 and Visual Studio Lightswitch by Rob Windso...
 
O365Con18 - Hybrid SharePoint Deep Dive - Thomas Vochten
O365Con18 - Hybrid SharePoint Deep Dive - Thomas VochtenO365Con18 - Hybrid SharePoint Deep Dive - Thomas Vochten
O365Con18 - Hybrid SharePoint Deep Dive - Thomas Vochten
 

Plus de brightgenss

Salesforce Winter 21 Release Webinar Deck
Salesforce Winter 21 Release Webinar DeckSalesforce Winter 21 Release Webinar Deck
Salesforce Winter 21 Release Webinar Deckbrightgenss
 
BrightGen's Summer 20 Salesforce Release Webinar
BrightGen's Summer 20 Salesforce Release WebinarBrightGen's Summer 20 Salesforce Release Webinar
BrightGen's Summer 20 Salesforce Release Webinarbrightgenss
 
Salesforce Spring 20 Webinar
Salesforce Spring 20 WebinarSalesforce Spring 20 Webinar
Salesforce Spring 20 Webinarbrightgenss
 
Winter 20 Salesforce Release Webinar
Winter 20 Salesforce Release WebinarWinter 20 Salesforce Release Webinar
Winter 20 Salesforce Release Webinarbrightgenss
 
BrightGen's Salesforce Summer 19 Release Webinar
BrightGen's Salesforce Summer 19 Release WebinarBrightGen's Salesforce Summer 19 Release Webinar
BrightGen's Salesforce Summer 19 Release Webinarbrightgenss
 
BrightGen's Spring 19 Salesforce Release Webinar slide deck
BrightGen's Spring 19 Salesforce Release Webinar slide deckBrightGen's Spring 19 Salesforce Release Webinar slide deck
BrightGen's Spring 19 Salesforce Release Webinar slide deckbrightgenss
 
Winter 19 release webinar
Winter 19 release webinarWinter 19 release webinar
Winter 19 release webinarbrightgenss
 
Summer 18 Release Webinar
Summer 18 Release WebinarSummer 18 Release Webinar
Summer 18 Release Webinarbrightgenss
 
Spring 18 Release Webinar Deck
Spring 18 Release Webinar DeckSpring 18 Release Webinar Deck
Spring 18 Release Webinar Deckbrightgenss
 
Winter'18 Salesforce Release Webinar
Winter'18 Salesforce Release WebinarWinter'18 Salesforce Release Webinar
Winter'18 Salesforce Release Webinarbrightgenss
 
BrightGen's Summer 17 Salesforce Release Webinar
BrightGen's Summer 17 Salesforce Release WebinarBrightGen's Summer 17 Salesforce Release Webinar
BrightGen's Summer 17 Salesforce Release Webinarbrightgenss
 
BrightGen Salesforce Spring 17 Release Webinar
BrightGen Salesforce Spring 17 Release WebinarBrightGen Salesforce Spring 17 Release Webinar
BrightGen Salesforce Spring 17 Release Webinarbrightgenss
 
BrightGen Salesforce Winter17 Release Webinar
BrightGen Salesforce Winter17 Release WebinarBrightGen Salesforce Winter17 Release Webinar
BrightGen Salesforce Winter17 Release Webinarbrightgenss
 
BrightGen's Spring 15 Salesforce Release Overview Webinar
BrightGen's Spring 15 Salesforce Release Overview WebinarBrightGen's Spring 15 Salesforce Release Overview Webinar
BrightGen's Spring 15 Salesforce Release Overview Webinarbrightgenss
 
Moving from Excel to Force.com
Moving from Excel to Force.comMoving from Excel to Force.com
Moving from Excel to Force.combrightgenss
 
BrightGen's Dreamforce 13 New Features Webinar
BrightGen's Dreamforce 13 New Features WebinarBrightGen's Dreamforce 13 New Features Webinar
BrightGen's Dreamforce 13 New Features Webinarbrightgenss
 
BrightGen's Summer 13 Salesforce Release Webinar
BrightGen's Summer 13 Salesforce Release WebinarBrightGen's Summer 13 Salesforce Release Webinar
BrightGen's Summer 13 Salesforce Release Webinarbrightgenss
 
BrightGen's Spring 13 Salesforce Release Webinar
BrightGen's Spring 13 Salesforce Release WebinarBrightGen's Spring 13 Salesforce Release Webinar
BrightGen's Spring 13 Salesforce Release Webinarbrightgenss
 

Plus de brightgenss (19)

Salesforce Winter 21 Release Webinar Deck
Salesforce Winter 21 Release Webinar DeckSalesforce Winter 21 Release Webinar Deck
Salesforce Winter 21 Release Webinar Deck
 
BrightGen's Summer 20 Salesforce Release Webinar
BrightGen's Summer 20 Salesforce Release WebinarBrightGen's Summer 20 Salesforce Release Webinar
BrightGen's Summer 20 Salesforce Release Webinar
 
Salesforce Spring 20 Webinar
Salesforce Spring 20 WebinarSalesforce Spring 20 Webinar
Salesforce Spring 20 Webinar
 
Winter 20 Salesforce Release Webinar
Winter 20 Salesforce Release WebinarWinter 20 Salesforce Release Webinar
Winter 20 Salesforce Release Webinar
 
BrightGen's Salesforce Summer 19 Release Webinar
BrightGen's Salesforce Summer 19 Release WebinarBrightGen's Salesforce Summer 19 Release Webinar
BrightGen's Salesforce Summer 19 Release Webinar
 
BrightGen's Spring 19 Salesforce Release Webinar slide deck
BrightGen's Spring 19 Salesforce Release Webinar slide deckBrightGen's Spring 19 Salesforce Release Webinar slide deck
BrightGen's Spring 19 Salesforce Release Webinar slide deck
 
Winter 19 release webinar
Winter 19 release webinarWinter 19 release webinar
Winter 19 release webinar
 
Summer 18 Release Webinar
Summer 18 Release WebinarSummer 18 Release Webinar
Summer 18 Release Webinar
 
Spring 18 Release Webinar Deck
Spring 18 Release Webinar DeckSpring 18 Release Webinar Deck
Spring 18 Release Webinar Deck
 
Winter'18 Salesforce Release Webinar
Winter'18 Salesforce Release WebinarWinter'18 Salesforce Release Webinar
Winter'18 Salesforce Release Webinar
 
BrightGen's Summer 17 Salesforce Release Webinar
BrightGen's Summer 17 Salesforce Release WebinarBrightGen's Summer 17 Salesforce Release Webinar
BrightGen's Summer 17 Salesforce Release Webinar
 
BrightGen Salesforce Spring 17 Release Webinar
BrightGen Salesforce Spring 17 Release WebinarBrightGen Salesforce Spring 17 Release Webinar
BrightGen Salesforce Spring 17 Release Webinar
 
BrightGen Salesforce Winter17 Release Webinar
BrightGen Salesforce Winter17 Release WebinarBrightGen Salesforce Winter17 Release Webinar
BrightGen Salesforce Winter17 Release Webinar
 
Summer15
Summer15Summer15
Summer15
 
BrightGen's Spring 15 Salesforce Release Overview Webinar
BrightGen's Spring 15 Salesforce Release Overview WebinarBrightGen's Spring 15 Salesforce Release Overview Webinar
BrightGen's Spring 15 Salesforce Release Overview Webinar
 
Moving from Excel to Force.com
Moving from Excel to Force.comMoving from Excel to Force.com
Moving from Excel to Force.com
 
BrightGen's Dreamforce 13 New Features Webinar
BrightGen's Dreamforce 13 New Features WebinarBrightGen's Dreamforce 13 New Features Webinar
BrightGen's Dreamforce 13 New Features Webinar
 
BrightGen's Summer 13 Salesforce Release Webinar
BrightGen's Summer 13 Salesforce Release WebinarBrightGen's Summer 13 Salesforce Release Webinar
BrightGen's Summer 13 Salesforce Release Webinar
 
BrightGen's Spring 13 Salesforce Release Webinar
BrightGen's Spring 13 Salesforce Release WebinarBrightGen's Spring 13 Salesforce Release Webinar
BrightGen's Spring 13 Salesforce Release Webinar
 

Dernier

Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts servicevipmodelshub1
 
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call GirlVIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girladitipandeya
 
Radiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girlsRadiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girlsstephieert
 
Networking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOGNetworking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOGAPNIC
 
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls KolkataLow Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Roomdivyansh0kumar0
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebJames Anderson
 
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...APNIC
 
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...SofiyaSharma5
 
Russian Call girls in Dubai +971563133746 Dubai Call girls
Russian  Call girls in Dubai +971563133746 Dubai  Call girlsRussian  Call girls in Dubai +971563133746 Dubai  Call girls
Russian Call girls in Dubai +971563133746 Dubai Call girlsstephieert
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Delhi Call girls
 
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607dollysharma2066
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceDelhi Call girls
 

Dernier (20)

Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
 
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
 
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call GirlVIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
 
Radiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girlsRadiant Call girls in Dubai O56338O268 Dubai Call girls
Radiant Call girls in Dubai O56338O268 Dubai Call girls
 
Networking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOGNetworking in the Penumbra presented by Geoff Huston at NZNOG
Networking in the Penumbra presented by Geoff Huston at NZNOG
 
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls KolkataLow Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
 
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
 
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
Low Rate Young Call Girls in Sector 63 Mamura Noida ✔️☆9289244007✔️☆ Female E...
 
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
Call Girls In South Ex 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
Call Girls In South Ex 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICECall Girls In South Ex 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
Call Girls In South Ex 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
 
Russian Call girls in Dubai +971563133746 Dubai Call girls
Russian  Call girls in Dubai +971563133746 Dubai  Call girlsRussian  Call girls in Dubai +971563133746 Dubai  Call girls
Russian Call girls in Dubai +971563133746 Dubai Call girls
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
 
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
 
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
 

Salesforce Summer 22 Release Webinar

  • 1. Salesforce Release Webinar Summer 22 Highlights Keir Bowden, CTO @bob_buzzard www.linkedin.com/in/keirbowden
  • 2. ● Summer 22 Release ○ Fond Farewells ○ General ○ Analytics ○ Customization ○ Development ○ Experiences ○ Sales ○ Service ○ Beta ● Questions Agenda
  • 4. Crossing the River Styx Legacy API versions 7.0 - 20.0 ● Will error Legacy API versions 21.0 - 30.0 deprecated ● No longer supported ● Will error in Summer 23 release Salesforce for Outlook ● June 2024
  • 6. Lightning Experience • Latest stable Edge Chromium, Chrome, Firefox, Safari Classic • Internet Explorer 11 • Latest stable Edge Chromium, Chrome, Firefox, Safari CRM Analytics • Latest stable Edge Chromium, Chrome, Firefox - not Safari sforce.co/3OFE0bh Browsers
  • 7. Einstein Search View searchable objects and fields Setup -> Einstein -> Einstein Search -> Search Manager
  • 8. Einstein Natural language search now covers knowledge articles Einstein Data Exploration Consent • Allow Salesforce data scientists to explore and improve your data Search Layouts renamed in Salesforce Classic • Now List View Button Layout
  • 10. Enhanced Report Type Selector GA
  • 11. Edit Multiple Fields on the Report Run Page GA Inline Edit fields • Pencil icon = editable • Lock icon = not editable Multiple columns Multiple fields Save in one operation Can opt out
  • 12. Median Function in Summaries
  • 13. Limit Results in Tabular Reports
  • 15. Restriction Rules External Objects supported No longer stop users from creating/editing a record • Once created/changed, they may be blocked! View/Modify All now disregards restriction rules • Parity with View/Modify All Data Criteria now supports picklists • Not multi-select
  • 16. View custom picklist fields with > 4000 inactive values • Email sent on request • Settings -> Data -> Picklist Settings Duplicate Picklist Entries are named Picklists
  • 17. Dynamic Related Lists Customize and filter related lists in lightning app builder • No more switching back to page layout editor • Max two related lists for same relationship • Different filters • New Dynamic Related List - Single component
  • 19. Other Set expiration dates for Permission Sets and Groups • Enhanced user interface • Release update - must be enabled
  • 21. AKA DOM! Attach directly to host element Not encapsulated in shadow DOM • Accessible to other elements • Accepts global styling Light DOM LWC can contain Shadow DOM LWC, and vice-versa Not available for base (lightning- namespace) components Lightning Web Component Light DOM
  • 22. Enable light dom via renderMode static field export default class LightDomApp extends LightningElement { static renderMode = 'light'; // the default is 'shadow' } Use lwc:render-mode template directive in <template> tag: <template lwc:render-mode='light'> ... </template> Lightning Web Component Light DOM
  • 23. New prompt, confirm and alert components - LWC and Aura • LightningPrompt • LightningConfirm • LightningAlert Avoid problems with the end of cross origin (iframe) support Create via JavaScript - requires async function await LightningAlert.open({ message: 'this is the alert message', theme: 'error', 'Error!', // this is the header text }); Lightning Components
  • 25. Learn • Learn the basics of scalability and performance testing Prepare • Create your performance testing strategy and test plan • Schedule your test Analyze and Optimize • Interpret test results • Identify performance hotspots • Optimize your solution Performance Assistant
  • 26. "Fairer" Apex test resource distribution Group multiple platform events into a single channel • CometD/Streaming API clients only Other
  • 28. Create multilingual Lightning Web Runtime sites • Up to 20 languages per site • Standard component text entry fields are translatable • Mark String properties translatable for custom components Language determined from browser settings • Previously showed site in default language Lightning Web Runtime
  • 29. Users can deactivate their account from Aura sites • Customizable User Settings component • Enable User Self Deactivate in Setup -> User Management settings Add links to Content/Layout Components - LWR Sites • Button, Contact Form, Lead Form • Any layout component that can be a link • Choose type (link, email, phone) and source (page, external link, data binding) Flows available in LWR sites • Cannot contain Aura components Components
  • 30. Toggle Locker Service • isLockerServiceEnabled in mainAppPage.json config file • Aura and LWR sites Optional URL Query Parameters for Aura sites • Previously if recordId missing, {!recordId} became a string literal! • Now evaluates to an empty string Developer
  • 31. Guest User Removed from Permission Sets/Groups associated with Permission Set Licenses where • View or Modify All permission is granted • Edit or Delete standard objects Permission Set License is not removed Aura/LWR/Visualforce sites Release update • Automatically applied in Winter 23 • Test in Sandbox asap if affected Guest User
  • 32. Run Flows permission removed in Spring 23 • Grant access via profile or permission sets Aura/LWR/Visualforce sites Migrate to new permission structure • Setup -> Process Automation -> Flows Guest User
  • 33. Sales
  • 34. Customise Cumulative Rollup Names Include/Exclude more Opportunity Fields from Forecast • Filter on standard number, currency and picklist fields Collaborative Forecasting
  • 35. View Corporate and Forecast Currency Units Corporate Currency in brackets Collaborative Forecasting
  • 37. Use existing org-wide email address as default No-Reply address Verify email address to send email through Salesforce • Verification not always required • Mature orgs may have unverified addresses • Will receive email to verify address • Cannot send until this is complete - starting Winter 23 Email
  • 38. Overdue task Due Dates appear in red Activities
  • 39. Manage automatic associations from the activity timeline Activities
  • 40. Now includes the following (formerly add-on) features: • High Velocity Sales • Inbox (Gmail/Outlook) • Sales Cloud Einstein • Einstein Conversation Insights • Einstein Activity Capture Performance/Unlimited Edition
  • 41. Enable Person Accounts without Contacting Salesforce Support • At least one Account record type • Profiles with Read on Accounts also have Read on Contacts • Org-wide default for Contact is Controlled by Parent, or Account and Contact are Private Manually share Campaign record with another user Other
  • 43. Check Availability for Routing Action • Route based on number of agents and item backlog Play custom sounds when work is assigned Auto Accept at the service channel level Train reply recommendations in 16 more languages Flow Create Article Recommendations Action Routing / Einstein
  • 44. Milestone timer stops when case exits entitlement process • No requirement to click Is Stopped Messaging learning map - sforce.co/3wJnnmN Other
  • 45. Improved Conversation Canvas • Drag and drop from component library • Drag to re-order dialogs Improved standard reports • 16 new • Updated existing • In new folder - Einstein Bot Reports Summer ’22 Bots
  • 46. Beta
  • 47. Filter Report Types for Selected Objects
  • 48. Custom Address Fields Requires State and Country/Territory Picklists Enabled Setup -> User Interface New custom field type
  • 50. Clean Up Inactive Picklist Values Setup -> Picklist Settings Any picklist custom field Background task
  • 51. SOQL Queries: SELECT Name, Public_Field__c from Account WITH USER_MODE SELECT Name, Hidden_Field__c from Account WITH SYSTEM_MODE DML Operation: Account acc=new Account(Name='Test Account'); insert as user acc; Contact ctct=new Contact(AccoundId=acc.id, FirstName='Test', LastName='Contact'); insert as system ctct; User Mode Database Operations
  • 52. Here endeth the lesson
  • 53. Release Readiness sforce.co/3sPPMXj • Release in a Box • Release Notes • Demo videos Trailhead badge - sforce.co/3wAVHk4