SlideShare a Scribd company logo
Salesforce Release Webinar
Spring 23 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
Davy Jones’ Locker
Async SOQL
• Spring '23
• Use Bulk API/Batch Apex
API Versions 21-30
• Currently deprecated
• Removed Summer '23
• Will error!
Davy Jones’ Locker
Salesforce Mobile App Community License Access
• Summer '23
• Purchase platform subscription
Salesforce for Outlook
• June '24
• Use Outlook Integration/Einstein Activity Capture
Permissions on profiles
• Spring '26
• sforce.co/3HiqBnO
General
Browsers
Edge
Chromium
Chrome Firefox Safari
Lighting Experience
(Desktop)
Lightning Experience
(iPadOS)
Experience Builder
Sites
Classic
Classic Console
MFA Automatically Enabled
MFA required for direct logins
• "In phases throughout 2023"
• "Eventually we'll enforce MFA"
Required, but not checked, for Single Sign-On
Analytics
Personalized Report Filters
Report on Analytics Subscriptions
Subscriptions
• Lightning report/dashboards + collections
• CRM Analytics Lenses
• Dashboards in Slack
Notification conditions
• CRM Analytics dashboard widgets
• Einstein Discovery model quality alerts
Analytics Other
Subscription limits increased
• 15 reports
• 15 dashboards
• Previously 7
Lightning report builder has feature parity with Classic
• Edit in Classic button removed from lightning report actions
Enhanced Reports on mobile GA
Filter report types by objects/fields GA
• Up to 4 objects or 20 fields
Analytics Other Other
Report/Dashboard collections
• Group reports/dashboards from different folders
• Enable unified experience for analytics home
Customization
Picklists
Clean Inactive Picklist Values GA
• Bulk delete inactive values
• Custom picklists with pre-defined values only
Bulk Manage Picklist Values GA
• Delete, activate, deactivate, replace in bulk
• Previously one at a time
• Custom picklists with pre-defined values only
Inclusivity
Pronouns and Gender Identity Fields
• Optional for Lead, Contact, Person Account
• Default (vetted) value sets
• Add your own picklist values
Add to page layouts to use
Consider privacy implications
Lightning App Builder
Dynamic forms:
• Supported in Case and Lead record pages
Dynamic actions for standard objects GA
• All standard objects – desktop only
• Custom objects – desktop and mobile
Customise desktop forecast pages
Sharing
Enhanced PII Management release update
• Stop external users accessing other users' PII data – and their own!
• Field set defines PII – admin modifiable
View full record sharing details
Development
Access element via reference
• HTML
<template>
<div lwc:ref="userInfo">
...
</div>
</template>
• JavaScript
let userInfoEle=this.refs.userInfo;
Lightning Components
New conditional directives
• lwc:if
• lwc:else
• lwc:elseif
Use in preference to if:true, if:false
• More performant
• Old versions will be deprecated and removed in future
Lightning Components
lwc:elseif and lwc:else must be immediately preceded by lwc:if or lwc:elseif
<template lwc:if={sayHello}>
Hello!
</template>
<template lwc:elseif={sayGoodbye}>
Goodbye!
</template>
<template lwc:else>
Nothing to say!
</template>
Lightning Components
User mode database operations GA
• Respect field level security and object permissions of current user
• Apply sharing rules
SOQL WITH clause
• List<Contact> contacts=[SELECT Id, FirstName, LastName from Contact WITH USER_MODE];
DML
• Contact ctct=new Contact(FirstName='Keir', LastName='Bowden');
insert as user ctct;
Apex
Specify delay when enqueueing job
• System.enqueueJob(new CheckForResults(), 5);
• Delays job execution by 5 minutes
• 0-10 minutes
Configure org-wide default delay when enqueueing jobs
• Setup -> Apex Settings
• 1-600 seconds
• Doesn't override delay parameter on enqueueJob
Apex
ApexTypeImplementor GA
• Identify which classes implement an interface
• bobbuzz.me.uk/Spring22Apex
SOQL Query with Bind Variable Map
Map acctBinds = new Map{'acctName' => 'Acme Corporation'};
List accts =
Database.queryWithBinds('SELECT Id FROM Account WHERE Name = :acctName',
acctBinds, AccessLevel.USER_MODE);
Apex
DevOps Center GA
Declarative deployment without change sets
Organise and track changes with Work Items
• Supports automation
Automatic change tracking
• Select changes to include in Work Items
Integration with Github
Deploy through clicks
• Collaborate with devs working directly in Github
Install Managed Package
sforce.co/3eg1DKa
See element descriptions on canvas
Improved flow element menu
Flow Builder
Select multiple records from a table GA
2000 element limit removed
• Other limits still apply
Flow Runtime
Experiences
Use <script> tag to add structured data
• bit.ly/3vEeU4i
Contact Support Form component available for LWR
Add alt text for images in rich content editor component
Next and previous buttons for grid component
Margin field for standard and custom components
Padding field for custom and some standard components
LWC/Aura Sites
Exceed person account ownership limit
• Create PersonAccountOwnerPowerUser via the API
• Associated with user id
• User must be top level of hierarchy
Micro-batching
• Error notifications when errors occur
• Add Apex tests for programmatic record creation
Performance
Sales
Customize page using Lightning App Builder
Forecast using custom date fields
• Previously Close Date, Product Date or Schedule Date
Collaborative Forecasting
Collaborative Forecasting Design Updates
Service
Enhanced reporting
• Swarm's related records
• Swarm member's work/skills
Required skills for swarm members
Swarming
Require all skills when filtering work items or agents
Notify agents with browser alerts
• Agent must enable
Supervisors can reassign agents to queues
Deploy Supervisor configurations
• Change sets or packages
Routing
Knowledge
Knowledge Dashboard Pack for CRM Analytics
• All Service Cloud users - View
• CRM Analytics license to Edit
• Install from AppExchange
• Includes draft articles
Change or add record types for translated articles
Cases
Lightning threading in Email-to-case
• Match on token and header-based threading
• Setup -> Email-to-Case -> Settings
Log a call from activities component
Beta
Configure Search Fields by Profile
Enable via Setup -> Einstein Search -> Search Manager
Lightning Web Security
Beta for Aura components
• Lightning Experience
• Experience Cloud sites
• Setup -> Session Settings -> Lightning Web Security
Test in sandbox!
Evaluate JavaScript in Lightning Web Security Console
RefreshView API
Refresh component data without a reload
• Aura and LWC
• Salesforce platform and custom components
Replaces force:refreshView in Aura
Flexible control of refresh scopes
Field Level Security in Permission Sets
Enable via Setup -> User Management
Enabled Disabled
Lightning Web Runtime Sites
Actions Bar Component
• Custom set of actions for object detail pages
Notifications Component
• Customizable, single place to catch up on notifications
Record Detail Component
• View and edit records
• Inherits formatting from site branding
Flow Reactive Components
Components react to changes to other components
• On the same screen!
Custom LWC and "supported components"
Opt-in:
• Setup -> Process Automation Settings -> Opt in to Reactive Screens Beta
Chatter Group:
• sforce.co/3kpc5S4
Flow Choice Lookup Component
Select from a list of values
• Search rather than scrolling
Supports all choice resources
Other – contact support to enable
Enhance Lightning Dashboards with Text and Graphics
Increase Lightning Dashboard filters
• 3 to 5
Recalculate Account Sharing Rules faster
• Virtual implicit case shares
• Grants view/edit to account owners/shared with for records owned by high volume site users
That’s all folks
Release Readiness
sforce.co/3Hbp03j
Release in a Box
• Release Notes
• Demo videos
Trailhead badge - sforce.co/3QN2wJ8
Questions?

More Related Content

What's hot

Seamless Authentication with Force.com Canvas
Seamless Authentication with Force.com CanvasSeamless Authentication with Force.com Canvas
Seamless Authentication with Force.com Canvas
Salesforce Developers
 
Salesforce Community Cloud
Salesforce Community CloudSalesforce Community Cloud
Salesforce Community Cloud
Jayant Jindal
 
Integrating Salesforce with Microsoft Office through Add-ins
Integrating Salesforce with Microsoft Office through Add-insIntegrating Salesforce with Microsoft Office through Add-ins
Integrating Salesforce with Microsoft Office through Add-ins
Salesforce Developers
 
Salesforce Security Best Practices for Every Admin
Salesforce Security Best Practices for Every AdminSalesforce Security Best Practices for Every Admin
Salesforce Security Best Practices for Every Admin
Cloud Analogy
 
Salesforce Communities
Salesforce CommunitiesSalesforce Communities
Salesforce Communities
Sunil kumar
 
Profiles and permission sets in salesforce
Profiles and permission sets in salesforceProfiles and permission sets in salesforce
Profiles and permission sets in salesforce
Sunil kumar
 
Salesforce crm and its cloud services ppt converted
Salesforce crm and its cloud services ppt convertedSalesforce crm and its cloud services ppt converted
Salesforce crm and its cloud services ppt converted
AmbientInfoSolutions1
 
OAuth with Salesforce - Demystified
OAuth with Salesforce - DemystifiedOAuth with Salesforce - Demystified
OAuth with Salesforce - Demystified
Calvin Noronha
 
Salesforce Winter ’23 Release Highlights
Salesforce Winter ’23 Release HighlightsSalesforce Winter ’23 Release Highlights
Salesforce Winter ’23 Release Highlights
SkyPlanner
 
Salesforce Streaming event - PushTopic and Generic Events
Salesforce Streaming event - PushTopic and Generic EventsSalesforce Streaming event - PushTopic and Generic Events
Salesforce Streaming event - PushTopic and Generic Events
Dhanik Sahni
 
Salesforce Tutorial for Beginners: Basic Salesforce Introduction
Salesforce Tutorial for Beginners: Basic Salesforce IntroductionSalesforce Tutorial for Beginners: Basic Salesforce Introduction
Salesforce Tutorial for Beginners: Basic Salesforce Introduction
Habilelabs
 
Real Time Integration with Salesforce Platform Events
Real Time Integration with Salesforce Platform EventsReal Time Integration with Salesforce Platform Events
Real Time Integration with Salesforce Platform Events
Salesforce Developers
 
Salesforce integration best practices columbus meetup
Salesforce integration best practices   columbus meetupSalesforce integration best practices   columbus meetup
Salesforce integration best practices columbus meetup
MuleSoft Meetup
 
Deep dive into Salesforce Connected App
Deep dive into Salesforce Connected AppDeep dive into Salesforce Connected App
Deep dive into Salesforce Connected App
Dhanik Sahni
 
SFDC User Setup
SFDC User SetupSFDC User Setup
SFDC User Setup
Simeon Tzanev
 
Introduction to Salesforce Platform - Basic
Introduction to Salesforce Platform - BasicIntroduction to Salesforce Platform - Basic
Introduction to Salesforce Platform - Basic
sanskriti agarwal
 
Introduction to Salesforce Connected Apps
Introduction to Salesforce Connected AppsIntroduction to Salesforce Connected Apps
Introduction to Salesforce Connected Apps
Cloud Analogy
 
Why Flow with Salesforce Flow
Why Flow with Salesforce FlowWhy Flow with Salesforce Flow
Why Flow with Salesforce Flow
Ajeet Singh
 
Flow in Salesforce
Flow in SalesforceFlow in Salesforce
Flow in Salesforce
vikas singh
 

What's hot (20)

Seamless Authentication with Force.com Canvas
Seamless Authentication with Force.com CanvasSeamless Authentication with Force.com Canvas
Seamless Authentication with Force.com Canvas
 
Salesforce Community Cloud
Salesforce Community CloudSalesforce Community Cloud
Salesforce Community Cloud
 
Integrating Salesforce with Microsoft Office through Add-ins
Integrating Salesforce with Microsoft Office through Add-insIntegrating Salesforce with Microsoft Office through Add-ins
Integrating Salesforce with Microsoft Office through Add-ins
 
Salesforce Security Best Practices for Every Admin
Salesforce Security Best Practices for Every AdminSalesforce Security Best Practices for Every Admin
Salesforce Security Best Practices for Every Admin
 
Salesforce Communities
Salesforce CommunitiesSalesforce Communities
Salesforce Communities
 
Salesforce crm projects
Salesforce crm projects Salesforce crm projects
Salesforce crm projects
 
Profiles and permission sets in salesforce
Profiles and permission sets in salesforceProfiles and permission sets in salesforce
Profiles and permission sets in salesforce
 
Salesforce crm and its cloud services ppt converted
Salesforce crm and its cloud services ppt convertedSalesforce crm and its cloud services ppt converted
Salesforce crm and its cloud services ppt converted
 
OAuth with Salesforce - Demystified
OAuth with Salesforce - DemystifiedOAuth with Salesforce - Demystified
OAuth with Salesforce - Demystified
 
Salesforce Winter ’23 Release Highlights
Salesforce Winter ’23 Release HighlightsSalesforce Winter ’23 Release Highlights
Salesforce Winter ’23 Release Highlights
 
Salesforce Streaming event - PushTopic and Generic Events
Salesforce Streaming event - PushTopic and Generic EventsSalesforce Streaming event - PushTopic and Generic Events
Salesforce Streaming event - PushTopic and Generic Events
 
Salesforce Tutorial for Beginners: Basic Salesforce Introduction
Salesforce Tutorial for Beginners: Basic Salesforce IntroductionSalesforce Tutorial for Beginners: Basic Salesforce Introduction
Salesforce Tutorial for Beginners: Basic Salesforce Introduction
 
Real Time Integration with Salesforce Platform Events
Real Time Integration with Salesforce Platform EventsReal Time Integration with Salesforce Platform Events
Real Time Integration with Salesforce Platform Events
 
Salesforce integration best practices columbus meetup
Salesforce integration best practices   columbus meetupSalesforce integration best practices   columbus meetup
Salesforce integration best practices columbus meetup
 
Deep dive into Salesforce Connected App
Deep dive into Salesforce Connected AppDeep dive into Salesforce Connected App
Deep dive into Salesforce Connected App
 
SFDC User Setup
SFDC User SetupSFDC User Setup
SFDC User Setup
 
Introduction to Salesforce Platform - Basic
Introduction to Salesforce Platform - BasicIntroduction to Salesforce Platform - Basic
Introduction to Salesforce Platform - Basic
 
Introduction to Salesforce Connected Apps
Introduction to Salesforce Connected AppsIntroduction to Salesforce Connected Apps
Introduction to Salesforce Connected Apps
 
Why Flow with Salesforce Flow
Why Flow with Salesforce FlowWhy Flow with Salesforce Flow
Why Flow with Salesforce Flow
 
Flow in Salesforce
Flow in SalesforceFlow in Salesforce
Flow in Salesforce
 

Similar to Salesforce Spring 23 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 Deck
brightgenss
 
Salesforce Spring 22 Webinar
Salesforce Spring 22 WebinarSalesforce Spring 22 Webinar
Salesforce Spring 22 Webinar
brightgenss
 
Salesforce Summer 22 Release Webinar
Salesforce Summer 22 Release WebinarSalesforce Summer 22 Release Webinar
Salesforce Summer 22 Release Webinar
brightgenss
 
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
brightgenss
 
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
Haaron Gonzalez
 
Modernising the way System Customisers Configure the Model-Driven Apps for Us...
Modernising the way System Customisers Configure the Model-Driven Apps for Us...Modernising the way System Customisers Configure the Model-Driven Apps for Us...
Modernising the way System Customisers Configure the Model-Driven Apps for Us...
Linn Zaw Win
 
Denver Atlassian Community 5-minute Plugins
Denver Atlassian Community 5-minute PluginsDenver Atlassian Community 5-minute Plugins
Denver Atlassian Community 5-minute Plugins
denveraug
 
London Non-Profit Spring 22 Salesforce Release
London Non-Profit Spring 22 Salesforce ReleaseLondon Non-Profit Spring 22 Salesforce Release
London Non-Profit Spring 22 Salesforce Release
Keir Bowden
 
Play with azure functions
Play with azure functionsPlay with azure functions
Play with azure functions
Baskar rao Dsn
 
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
NCCOMMS
 
IBM Social Business Toolkit
IBM Social Business ToolkitIBM Social Business Toolkit
IBM Social Business Toolkit
Van Staub, MBA
 
Deep dive into share point framework webparts
Deep dive into share point framework webpartsDeep dive into share point framework webparts
Deep dive into share point framework webparts
Prabhu Nehru
 
Azure Functions in Action #CodePaLOUsa
Azure Functions in Action #CodePaLOUsaAzure Functions in Action #CodePaLOUsa
Azure Functions in Action #CodePaLOUsa
Baskar rao Dsn
 
Atlassian jira как полностью раскрыть возможности
Atlassian jira   как полностью раскрыть возможностиAtlassian jira   как полностью раскрыть возможности
Atlassian jira как полностью раскрыть возможности
Andrew Fadeev
 
SPSNYC SharePoint Worst Practices
SPSNYC SharePoint Worst PracticesSPSNYC SharePoint Worst Practices
SPSNYC SharePoint Worst Practices
Scott Hoag
 
Microsoft Graph and Azure Functions - SharePoint User Group Frankfurt
Microsoft Graph and Azure Functions - SharePoint User Group FrankfurtMicrosoft Graph and Azure Functions - SharePoint User Group Frankfurt
Microsoft Graph and Azure Functions - SharePoint User Group Frankfurt
Dragan Panjkov
 
Introduction to SharePoint Framework
Introduction to SharePoint FrameworkIntroduction to SharePoint Framework
Introduction to SharePoint Framework
Małgorzata Borzęcka
 
Middleware monitoring with Applications Manager
Middleware monitoring with Applications ManagerMiddleware monitoring with Applications Manager
Middleware monitoring with Applications Manager
ManageEngine, Zoho Corporation
 
Accelerate your Upgrades and Migrations
Accelerate your Upgrades and MigrationsAccelerate your Upgrades and Migrations
Accelerate your Upgrades and Migrations
Wiiisdom
 

Similar to Salesforce Spring 23 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
 
Salesforce Summer 22 Release Webinar
Salesforce Summer 22 Release WebinarSalesforce Summer 22 Release Webinar
Salesforce Summer 22 Release 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
 
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
 
Modernising the way System Customisers Configure the Model-Driven Apps for Us...
Modernising the way System Customisers Configure the Model-Driven Apps for Us...Modernising the way System Customisers Configure the Model-Driven Apps for Us...
Modernising the way System Customisers Configure the Model-Driven Apps for Us...
 
Denver Atlassian Community 5-minute Plugins
Denver Atlassian Community 5-minute PluginsDenver Atlassian Community 5-minute Plugins
Denver Atlassian Community 5-minute Plugins
 
London Non-Profit Spring 22 Salesforce Release
London Non-Profit Spring 22 Salesforce ReleaseLondon Non-Profit Spring 22 Salesforce Release
London Non-Profit Spring 22 Salesforce Release
 
Play with azure functions
Play with azure functionsPlay with azure functions
Play with azure functions
 
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
 
IBM Social Business Toolkit
IBM Social Business ToolkitIBM Social Business Toolkit
IBM Social Business Toolkit
 
Deep dive into share point framework webparts
Deep dive into share point framework webpartsDeep dive into share point framework webparts
Deep dive into share point framework webparts
 
Azure Functions in Action #CodePaLOUsa
Azure Functions in Action #CodePaLOUsaAzure Functions in Action #CodePaLOUsa
Azure Functions in Action #CodePaLOUsa
 
Atlassian jira как полностью раскрыть возможности
Atlassian jira   как полностью раскрыть возможностиAtlassian jira   как полностью раскрыть возможности
Atlassian jira как полностью раскрыть возможности
 
Salesforce crm training
Salesforce crm trainingSalesforce crm training
Salesforce crm training
 
SPSNYC SharePoint Worst Practices
SPSNYC SharePoint Worst PracticesSPSNYC SharePoint Worst Practices
SPSNYC SharePoint Worst Practices
 
Microsoft Graph and Azure Functions - SharePoint User Group Frankfurt
Microsoft Graph and Azure Functions - SharePoint User Group FrankfurtMicrosoft Graph and Azure Functions - SharePoint User Group Frankfurt
Microsoft Graph and Azure Functions - SharePoint User Group Frankfurt
 
Introduction to SharePoint Framework
Introduction to SharePoint FrameworkIntroduction to SharePoint Framework
Introduction to SharePoint Framework
 
Middleware monitoring with Applications Manager
Middleware monitoring with Applications ManagerMiddleware monitoring with Applications Manager
Middleware monitoring with Applications Manager
 
Accelerate your Upgrades and Migrations
Accelerate your Upgrades and MigrationsAccelerate your Upgrades and Migrations
Accelerate your Upgrades and Migrations
 

More from brightgenss

BrightGen's Salesforce Winter 22 Webinar
BrightGen's Salesforce Winter 22 WebinarBrightGen's Salesforce Winter 22 Webinar
BrightGen's Salesforce Winter 22 Webinar
brightgenss
 
Spring 21 Salesforce Release Webinar
Spring 21 Salesforce Release WebinarSpring 21 Salesforce Release Webinar
Spring 21 Salesforce Release Webinar
brightgenss
 
Salesforce Winter 21 Release Webinar Deck
Salesforce Winter 21 Release Webinar DeckSalesforce Winter 21 Release Webinar Deck
Salesforce Winter 21 Release Webinar Deck
brightgenss
 
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
brightgenss
 
Salesforce Spring 20 Webinar
Salesforce Spring 20 WebinarSalesforce Spring 20 Webinar
Salesforce Spring 20 Webinar
brightgenss
 
Winter 20 Salesforce Release Webinar
Winter 20 Salesforce Release WebinarWinter 20 Salesforce Release Webinar
Winter 20 Salesforce Release Webinar
brightgenss
 
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
brightgenss
 
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
brightgenss
 
Winter 19 release webinar
Winter 19 release webinarWinter 19 release webinar
Winter 19 release webinar
brightgenss
 
Summer 18 Release Webinar
Summer 18 Release WebinarSummer 18 Release Webinar
Summer 18 Release Webinar
brightgenss
 
Spring 18 Release Webinar Deck
Spring 18 Release Webinar DeckSpring 18 Release Webinar Deck
Spring 18 Release Webinar Deck
brightgenss
 
Winter'18 Salesforce Release Webinar
Winter'18 Salesforce Release WebinarWinter'18 Salesforce Release Webinar
Winter'18 Salesforce Release Webinar
brightgenss
 
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
brightgenss
 
BrightGen Salesforce Spring 17 Release Webinar
BrightGen Salesforce Spring 17 Release WebinarBrightGen Salesforce Spring 17 Release Webinar
BrightGen Salesforce Spring 17 Release Webinar
brightgenss
 
BrightGen Salesforce Winter17 Release Webinar
BrightGen Salesforce Winter17 Release WebinarBrightGen Salesforce Winter17 Release Webinar
BrightGen Salesforce Winter17 Release Webinar
brightgenss
 
BrightGen's Summer 16 Release Webinar
BrightGen's Summer 16 Release WebinarBrightGen's Summer 16 Release Webinar
BrightGen's Summer 16 Release Webinar
brightgenss
 
BrightGen Spring 16 Release Webinar
BrightGen Spring 16 Release WebinarBrightGen Spring 16 Release Webinar
BrightGen Spring 16 Release Webinar
brightgenss
 
Winter 16 Webinar Slide Deck
Winter 16 Webinar Slide DeckWinter 16 Webinar Slide Deck
Winter 16 Webinar Slide Deck
brightgenss
 
Summer15
Summer15Summer15
Summer15
brightgenss
 
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
brightgenss
 

More from brightgenss (20)

BrightGen's Salesforce Winter 22 Webinar
BrightGen's Salesforce Winter 22 WebinarBrightGen's Salesforce Winter 22 Webinar
BrightGen's Salesforce Winter 22 Webinar
 
Spring 21 Salesforce Release Webinar
Spring 21 Salesforce Release WebinarSpring 21 Salesforce Release Webinar
Spring 21 Salesforce Release Webinar
 
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
 
BrightGen's Summer 16 Release Webinar
BrightGen's Summer 16 Release WebinarBrightGen's Summer 16 Release Webinar
BrightGen's Summer 16 Release Webinar
 
BrightGen Spring 16 Release Webinar
BrightGen Spring 16 Release WebinarBrightGen Spring 16 Release Webinar
BrightGen Spring 16 Release Webinar
 
Winter 16 Webinar Slide Deck
Winter 16 Webinar Slide DeckWinter 16 Webinar Slide Deck
Winter 16 Webinar Slide Deck
 
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
 

Recently uploaded

1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
3ipehhoa
 
guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...
Rogerio Filho
 
History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shopHistory+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
laozhuseo02
 
Latest trends in computer networking.pptx
Latest trends in computer networking.pptxLatest trends in computer networking.pptx
Latest trends in computer networking.pptx
JungkooksNonexistent
 
Bridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptx
Bridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptxBridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptx
Bridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptx
Brad Spiegel Macon GA
 
JAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
JAVIER LASA-EXPERIENCIA digital 1986-2024.pdfJAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
JAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
Javier Lasa
 
test test test test testtest test testtest test testtest test testtest test ...
test test  test test testtest test testtest test testtest test testtest test ...test test  test test testtest test testtest test testtest test testtest test ...
test test test test testtest test testtest test testtest test testtest test ...
Arif0071
 
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
keoku
 
The+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptxThe+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptx
laozhuseo02
 
BASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptxBASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptx
natyesu
 
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
3ipehhoa
 
How to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptxHow to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptx
Gal Baras
 
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
ufdana
 
Internet-Security-Safeguarding-Your-Digital-World (1).pptx
Internet-Security-Safeguarding-Your-Digital-World (1).pptxInternet-Security-Safeguarding-Your-Digital-World (1).pptx
Internet-Security-Safeguarding-Your-Digital-World (1).pptx
VivekSinghShekhawat2
 
This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!
nirahealhty
 
一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理
一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理
一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理
eutxy
 
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
3ipehhoa
 
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
APNIC
 
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and GuidelinesMulti-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Sanjeev Rampal
 
1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...
JeyaPerumal1
 

Recently uploaded (20)

1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
 
guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...
 
History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shopHistory+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
 
Latest trends in computer networking.pptx
Latest trends in computer networking.pptxLatest trends in computer networking.pptx
Latest trends in computer networking.pptx
 
Bridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptx
Bridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptxBridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptx
Bridging the Digital Gap Brad Spiegel Macon, GA Initiative.pptx
 
JAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
JAVIER LASA-EXPERIENCIA digital 1986-2024.pdfJAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
JAVIER LASA-EXPERIENCIA digital 1986-2024.pdf
 
test test test test testtest test testtest test testtest test testtest test ...
test test  test test testtest test testtest test testtest test testtest test ...test test  test test testtest test testtest test testtest test testtest test ...
test test test test testtest test testtest test testtest test testtest test ...
 
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
一比一原版(SLU毕业证)圣路易斯大学毕业证成绩单专业办理
 
The+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptxThe+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptx
 
BASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptxBASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptx
 
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
 
How to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptxHow to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptx
 
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
一比一原版(CSU毕业证)加利福尼亚州立大学毕业证成绩单专业办理
 
Internet-Security-Safeguarding-Your-Digital-World (1).pptx
Internet-Security-Safeguarding-Your-Digital-World (1).pptxInternet-Security-Safeguarding-Your-Digital-World (1).pptx
Internet-Security-Safeguarding-Your-Digital-World (1).pptx
 
This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!
 
一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理
一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理
一比一原版(LBS毕业证)伦敦商学院毕业证成绩单专业办理
 
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
 
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
APNIC Foundation, presented by Ellisha Heppner at the PNG DNS Forum 2024
 
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and GuidelinesMulti-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
 
1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...
 

Salesforce Spring 23 Webinar

  • 1. Salesforce Release Webinar Spring 23 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. Davy Jones’ Locker Async SOQL • Spring '23 • Use Bulk API/Batch Apex API Versions 21-30 • Currently deprecated • Removed Summer '23 • Will error!
  • 5. Davy Jones’ Locker Salesforce Mobile App Community License Access • Summer '23 • Purchase platform subscription Salesforce for Outlook • June '24 • Use Outlook Integration/Einstein Activity Capture Permissions on profiles • Spring '26 • sforce.co/3HiqBnO
  • 7. Browsers Edge Chromium Chrome Firefox Safari Lighting Experience (Desktop) Lightning Experience (iPadOS) Experience Builder Sites Classic Classic Console
  • 8. MFA Automatically Enabled MFA required for direct logins • "In phases throughout 2023" • "Eventually we'll enforce MFA" Required, but not checked, for Single Sign-On
  • 11. Report on Analytics Subscriptions Subscriptions • Lightning report/dashboards + collections • CRM Analytics Lenses • Dashboards in Slack Notification conditions • CRM Analytics dashboard widgets • Einstein Discovery model quality alerts
  • 12. Analytics Other Subscription limits increased • 15 reports • 15 dashboards • Previously 7 Lightning report builder has feature parity with Classic • Edit in Classic button removed from lightning report actions Enhanced Reports on mobile GA Filter report types by objects/fields GA • Up to 4 objects or 20 fields
  • 13. Analytics Other Other Report/Dashboard collections • Group reports/dashboards from different folders • Enable unified experience for analytics home
  • 15. Picklists Clean Inactive Picklist Values GA • Bulk delete inactive values • Custom picklists with pre-defined values only Bulk Manage Picklist Values GA • Delete, activate, deactivate, replace in bulk • Previously one at a time • Custom picklists with pre-defined values only
  • 16. Inclusivity Pronouns and Gender Identity Fields • Optional for Lead, Contact, Person Account • Default (vetted) value sets • Add your own picklist values Add to page layouts to use Consider privacy implications
  • 17. Lightning App Builder Dynamic forms: • Supported in Case and Lead record pages Dynamic actions for standard objects GA • All standard objects – desktop only • Custom objects – desktop and mobile Customise desktop forecast pages
  • 18. Sharing Enhanced PII Management release update • Stop external users accessing other users' PII data – and their own! • Field set defines PII – admin modifiable View full record sharing details
  • 20. Access element via reference • HTML <template> <div lwc:ref="userInfo"> ... </div> </template> • JavaScript let userInfoEle=this.refs.userInfo; Lightning Components
  • 21. New conditional directives • lwc:if • lwc:else • lwc:elseif Use in preference to if:true, if:false • More performant • Old versions will be deprecated and removed in future Lightning Components
  • 22. lwc:elseif and lwc:else must be immediately preceded by lwc:if or lwc:elseif <template lwc:if={sayHello}> Hello! </template> <template lwc:elseif={sayGoodbye}> Goodbye! </template> <template lwc:else> Nothing to say! </template> Lightning Components
  • 23. User mode database operations GA • Respect field level security and object permissions of current user • Apply sharing rules SOQL WITH clause • List<Contact> contacts=[SELECT Id, FirstName, LastName from Contact WITH USER_MODE]; DML • Contact ctct=new Contact(FirstName='Keir', LastName='Bowden'); insert as user ctct; Apex
  • 24. Specify delay when enqueueing job • System.enqueueJob(new CheckForResults(), 5); • Delays job execution by 5 minutes • 0-10 minutes Configure org-wide default delay when enqueueing jobs • Setup -> Apex Settings • 1-600 seconds • Doesn't override delay parameter on enqueueJob Apex
  • 25. ApexTypeImplementor GA • Identify which classes implement an interface • bobbuzz.me.uk/Spring22Apex SOQL Query with Bind Variable Map Map acctBinds = new Map{'acctName' => 'Acme Corporation'}; List accts = Database.queryWithBinds('SELECT Id FROM Account WHERE Name = :acctName', acctBinds, AccessLevel.USER_MODE); Apex
  • 26. DevOps Center GA Declarative deployment without change sets Organise and track changes with Work Items • Supports automation Automatic change tracking • Select changes to include in Work Items Integration with Github Deploy through clicks • Collaborate with devs working directly in Github Install Managed Package sforce.co/3eg1DKa
  • 27. See element descriptions on canvas Improved flow element menu Flow Builder
  • 28. Select multiple records from a table GA 2000 element limit removed • Other limits still apply Flow Runtime
  • 30. Use <script> tag to add structured data • bit.ly/3vEeU4i Contact Support Form component available for LWR Add alt text for images in rich content editor component Next and previous buttons for grid component Margin field for standard and custom components Padding field for custom and some standard components LWC/Aura Sites
  • 31. Exceed person account ownership limit • Create PersonAccountOwnerPowerUser via the API • Associated with user id • User must be top level of hierarchy Micro-batching • Error notifications when errors occur • Add Apex tests for programmatic record creation Performance
  • 32. Sales
  • 33. Customize page using Lightning App Builder Forecast using custom date fields • Previously Close Date, Product Date or Schedule Date Collaborative Forecasting
  • 36. Enhanced reporting • Swarm's related records • Swarm member's work/skills Required skills for swarm members Swarming
  • 37. Require all skills when filtering work items or agents Notify agents with browser alerts • Agent must enable Supervisors can reassign agents to queues Deploy Supervisor configurations • Change sets or packages Routing
  • 38. Knowledge Knowledge Dashboard Pack for CRM Analytics • All Service Cloud users - View • CRM Analytics license to Edit • Install from AppExchange • Includes draft articles Change or add record types for translated articles
  • 39. Cases Lightning threading in Email-to-case • Match on token and header-based threading • Setup -> Email-to-Case -> Settings Log a call from activities component
  • 40. Beta
  • 41. Configure Search Fields by Profile Enable via Setup -> Einstein Search -> Search Manager
  • 42. Lightning Web Security Beta for Aura components • Lightning Experience • Experience Cloud sites • Setup -> Session Settings -> Lightning Web Security Test in sandbox! Evaluate JavaScript in Lightning Web Security Console
  • 43. RefreshView API Refresh component data without a reload • Aura and LWC • Salesforce platform and custom components Replaces force:refreshView in Aura Flexible control of refresh scopes
  • 44. Field Level Security in Permission Sets Enable via Setup -> User Management Enabled Disabled
  • 45. Lightning Web Runtime Sites Actions Bar Component • Custom set of actions for object detail pages Notifications Component • Customizable, single place to catch up on notifications Record Detail Component • View and edit records • Inherits formatting from site branding
  • 46. Flow Reactive Components Components react to changes to other components • On the same screen! Custom LWC and "supported components" Opt-in: • Setup -> Process Automation Settings -> Opt in to Reactive Screens Beta Chatter Group: • sforce.co/3kpc5S4
  • 47. Flow Choice Lookup Component Select from a list of values • Search rather than scrolling Supports all choice resources
  • 48. Other – contact support to enable Enhance Lightning Dashboards with Text and Graphics Increase Lightning Dashboard filters • 3 to 5 Recalculate Account Sharing Rules faster • Virtual implicit case shares • Grants view/edit to account owners/shared with for records owned by high volume site users
  • 50. Release Readiness sforce.co/3Hbp03j Release in a Box • Release Notes • Demo videos Trailhead badge - sforce.co/3QN2wJ8