SlideShare una empresa de Scribd logo
1 de 51
Descargar para leer sin conexión
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?

Más contenido relacionado

La actualidad más candente

Best Practices for Rolling Out New Functionality
Best Practices for Rolling Out New FunctionalityBest Practices for Rolling Out New Functionality
Best Practices for Rolling Out New FunctionalitySalesforce Admins
 
Manage Salesforce Like a Pro with Governance
Manage Salesforce Like a Pro with GovernanceManage Salesforce Like a Pro with Governance
Manage Salesforce Like a Pro with GovernanceSalesforce Admins
 
Essential Habits for Salesforce Admins: Actionable Analytics
Essential Habits for Salesforce Admins: Actionable AnalyticsEssential Habits for Salesforce Admins: Actionable Analytics
Essential Habits for Salesforce Admins: Actionable AnalyticsSalesforce Admins
 
Tackling Salesforce Technical Debt
Tackling Salesforce Technical DebtTackling Salesforce Technical Debt
Tackling Salesforce Technical Debtpanayaofficial
 
Salesforce data model
Salesforce data modelSalesforce data model
Salesforce data modelJean Brenda
 
Admin Webinar—An Admin's Guide to Profiles & Permissions
Admin Webinar—An Admin's Guide to Profiles & PermissionsAdmin Webinar—An Admin's Guide to Profiles & Permissions
Admin Webinar—An Admin's Guide to Profiles & PermissionsSalesforce Admins
 
Managing the Role Hierarchy at Enterprise Scale
Managing the Role Hierarchy at Enterprise ScaleManaging the Role Hierarchy at Enterprise Scale
Managing the Role Hierarchy at Enterprise ScaleSalesforce Developers
 
Integrating with salesforce
Integrating with salesforceIntegrating with salesforce
Integrating with salesforceMark Adcock
 
Understanding the Salesforce Architecture: How We Do the Magic We Do
Understanding the Salesforce Architecture: How We Do the Magic We DoUnderstanding the Salesforce Architecture: How We Do the Magic We Do
Understanding the Salesforce Architecture: How We Do the Magic We DoSalesforce Developers
 
Webinar: Take Control of Your Org with Salesforce Optimizer
Webinar: Take Control of Your Org with Salesforce OptimizerWebinar: Take Control of Your Org with Salesforce Optimizer
Webinar: Take Control of Your Org with Salesforce OptimizerSalesforce Admins
 
Salesforce Field Service Lightning
Salesforce Field Service LightningSalesforce Field Service Lightning
Salesforce Field Service LightningJayant Jindal
 
Salesforce intro session_for_students_v2
Salesforce intro session_for_students_v2Salesforce intro session_for_students_v2
Salesforce intro session_for_students_v2Stephen Edache Paul
 
SalesForce Consulting Service & Customization
SalesForce Consulting Service & CustomizationSalesForce Consulting Service & Customization
SalesForce Consulting Service & Customizationvarianceinfotech
 
Sales Cloud Lightning Migration Best Practices (May 12, 2017)
Sales Cloud Lightning Migration Best Practices (May 12, 2017)Sales Cloud Lightning Migration Best Practices (May 12, 2017)
Sales Cloud Lightning Migration Best Practices (May 12, 2017)Salesforce Partners
 
Spring23-ReleaseOverview-FrenchGathering-010223.pptx.pdf
Spring23-ReleaseOverview-FrenchGathering-010223.pptx.pdfSpring23-ReleaseOverview-FrenchGathering-010223.pptx.pdf
Spring23-ReleaseOverview-FrenchGathering-010223.pptx.pdfyosra Saidani
 
Introducing the Salesforce platform
Introducing the Salesforce platformIntroducing the Salesforce platform
Introducing the Salesforce platformJohn Stevenson
 
CRM magic with data migration & integration (Presentation at CRMUG Summit 2013)
CRM magic with data migration & integration (Presentation at CRMUG Summit 2013)CRM magic with data migration & integration (Presentation at CRMUG Summit 2013)
CRM magic with data migration & integration (Presentation at CRMUG Summit 2013)Daniel Cai
 

La actualidad más candente (20)

Best Practices for Rolling Out New Functionality
Best Practices for Rolling Out New FunctionalityBest Practices for Rolling Out New Functionality
Best Practices for Rolling Out New Functionality
 
Manage Salesforce Like a Pro with Governance
Manage Salesforce Like a Pro with GovernanceManage Salesforce Like a Pro with Governance
Manage Salesforce Like a Pro with Governance
 
Essential Habits for Salesforce Admins: Actionable Analytics
Essential Habits for Salesforce Admins: Actionable AnalyticsEssential Habits for Salesforce Admins: Actionable Analytics
Essential Habits for Salesforce Admins: Actionable Analytics
 
Tackling Salesforce Technical Debt
Tackling Salesforce Technical DebtTackling Salesforce Technical Debt
Tackling Salesforce Technical Debt
 
Salesforce data model
Salesforce data modelSalesforce data model
Salesforce data model
 
Admin Webinar—An Admin's Guide to Profiles & Permissions
Admin Webinar—An Admin's Guide to Profiles & PermissionsAdmin Webinar—An Admin's Guide to Profiles & Permissions
Admin Webinar—An Admin's Guide to Profiles & Permissions
 
Managing the Role Hierarchy at Enterprise Scale
Managing the Role Hierarchy at Enterprise ScaleManaging the Role Hierarchy at Enterprise Scale
Managing the Role Hierarchy at Enterprise Scale
 
Salesforce Deck Template
Salesforce Deck TemplateSalesforce Deck Template
Salesforce Deck Template
 
Integrating with salesforce
Integrating with salesforceIntegrating with salesforce
Integrating with salesforce
 
Understanding the Salesforce Architecture: How We Do the Magic We Do
Understanding the Salesforce Architecture: How We Do the Magic We DoUnderstanding the Salesforce Architecture: How We Do the Magic We Do
Understanding the Salesforce Architecture: How We Do the Magic We Do
 
Webinar: Take Control of Your Org with Salesforce Optimizer
Webinar: Take Control of Your Org with Salesforce OptimizerWebinar: Take Control of Your Org with Salesforce Optimizer
Webinar: Take Control of Your Org with Salesforce Optimizer
 
Sales Cloud Best Practices
Sales Cloud Best PracticesSales Cloud Best Practices
Sales Cloud Best Practices
 
Salesforce Field Service Lightning
Salesforce Field Service LightningSalesforce Field Service Lightning
Salesforce Field Service Lightning
 
Org Merge Best Practices
Org Merge Best PracticesOrg Merge Best Practices
Org Merge Best Practices
 
Salesforce intro session_for_students_v2
Salesforce intro session_for_students_v2Salesforce intro session_for_students_v2
Salesforce intro session_for_students_v2
 
SalesForce Consulting Service & Customization
SalesForce Consulting Service & CustomizationSalesForce Consulting Service & Customization
SalesForce Consulting Service & Customization
 
Sales Cloud Lightning Migration Best Practices (May 12, 2017)
Sales Cloud Lightning Migration Best Practices (May 12, 2017)Sales Cloud Lightning Migration Best Practices (May 12, 2017)
Sales Cloud Lightning Migration Best Practices (May 12, 2017)
 
Spring23-ReleaseOverview-FrenchGathering-010223.pptx.pdf
Spring23-ReleaseOverview-FrenchGathering-010223.pptx.pdfSpring23-ReleaseOverview-FrenchGathering-010223.pptx.pdf
Spring23-ReleaseOverview-FrenchGathering-010223.pptx.pdf
 
Introducing the Salesforce platform
Introducing the Salesforce platformIntroducing the Salesforce platform
Introducing the Salesforce platform
 
CRM magic with data migration & integration (Presentation at CRMUG Summit 2013)
CRM magic with data migration & integration (Presentation at CRMUG Summit 2013)CRM magic with data migration & integration (Presentation at CRMUG Summit 2013)
CRM magic with data migration & integration (Presentation at CRMUG Summit 2013)
 

Similar a 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 Deckbrightgenss
 
Salesforce Spring 22 Webinar
Salesforce Spring 22 WebinarSalesforce Spring 22 Webinar
Salesforce Spring 22 Webinarbrightgenss
 
Salesforce Summer 22 Release Webinar
Salesforce Summer 22 Release WebinarSalesforce Summer 22 Release Webinar
Salesforce Summer 22 Release 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
 
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
 
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 Pluginsdenveraug
 
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 ReleaseKeir Bowden
 
Play with azure functions
Play with azure functionsPlay with azure functions
Play with azure functionsBaskar 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 VochtenNCCOMMS
 
IBM Social Business Toolkit
IBM Social Business ToolkitIBM Social Business Toolkit
IBM Social Business ToolkitVan 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 webpartsPrabhu Nehru
 
Azure Functions in Action #CodePaLOUsa
Azure Functions in Action #CodePaLOUsaAzure Functions in Action #CodePaLOUsa
Azure Functions in Action #CodePaLOUsaBaskar 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 PracticesScott 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 FrankfurtDragan Panjkov
 
Introduction to SharePoint Framework
Introduction to SharePoint FrameworkIntroduction to SharePoint Framework
Introduction to SharePoint FrameworkMałgorzata Borzęcka
 
Accelerate your Upgrades and Migrations
Accelerate your Upgrades and MigrationsAccelerate your Upgrades and Migrations
Accelerate your Upgrades and MigrationsWiiisdom
 

Similar a 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
 

Más de brightgenss

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

Más de 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
 

Último

Power point inglese - educazione civica di Nuria Iuzzolino
Power point inglese - educazione civica di Nuria IuzzolinoPower point inglese - educazione civica di Nuria Iuzzolino
Power point inglese - educazione civica di Nuria Iuzzolinonuriaiuzzolino1
 
20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdfMatthew Sinclair
 
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样ayvbos
 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge GraphsEleniIlkou
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtrahman018755
 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdfMatthew Sinclair
 
"Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency""Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency"growthgrids
 
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查ydyuyu
 
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制pxcywzqs
 
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi EscortsRussian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi EscortsMonica Sydney
 
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime NagercoilNagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoilmeghakumariji156
 
Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.krishnachandrapal52
 
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girlsRussian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girlsMonica Sydney
 
Best SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency DallasBest SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency DallasDigicorns Technologies
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirtrahman018755
 
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC
 
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdfMatthew Sinclair
 
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrStory Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrHenryBriggs2
 
APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC
 
75539-Cyber Security Challenges PPT.pptx
75539-Cyber Security Challenges PPT.pptx75539-Cyber Security Challenges PPT.pptx
75539-Cyber Security Challenges PPT.pptxAsmae Rabhi
 

Último (20)

Power point inglese - educazione civica di Nuria Iuzzolino
Power point inglese - educazione civica di Nuria IuzzolinoPower point inglese - educazione civica di Nuria Iuzzolino
Power point inglese - educazione civica di Nuria Iuzzolino
 
20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf
 
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirt
 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
 
"Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency""Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency"
 
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
 
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
 
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi EscortsRussian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
 
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime NagercoilNagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
 
Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.
 
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girlsRussian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
 
Best SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency DallasBest SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency Dallas
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirt
 
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
 
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
 
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrStory Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
 
APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53
 
75539-Cyber Security Challenges PPT.pptx
75539-Cyber Security Challenges PPT.pptx75539-Cyber Security Challenges PPT.pptx
75539-Cyber Security Challenges PPT.pptx
 

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