SlideShare uma empresa Scribd logo
1 de 21
Baixar para ler offline
ADM
Features
#LEBLOGDUCONSULTANT
NEW TOP FEATURES COMING TO SALESFORCE RELEASE WINTER'23 BY NBS CONSULTING
@NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS
02
Data Table
- In Flow
Data Source : Record Resource & Record
Collection Outputs
Selection Modes : Multi-select (Checkbox),
Single Select (Radio), or No Selection (View
only)
Column Configuration : Fields to display
○Required Selection Options (Min and Max)
○Default Selection
Unsaved records can be displayed in the
datatable within the flow
Rich Text Field can now be displayed within
the datatable in question
Bonuses :
#LEBLOGDUCONSULTANT
@NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS
03
IN/ NOT IN Operator
- Get, Update, Delete
Avoid queries within loops
Get higher data volumes
The ‘NOT IN’ operator is not selective
There’s a limit of characters when it comes to the collection (100,000 characters)
There’s two new operators added to the data elements in this release :
Considerations
The set values can only be non-record collection :
○Text
○Date
○Number
○DateTime
○Currency
○Boolean
#LEBLOGDUCONSULTANT
@NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS
04
LookUp Screen Supports Multiple Records
Set a Maximum for the Selections
Record ID Collection to set a default selection
The output is a text selection of the selected IDs
The new feature in the lookup screen allows you to :
TIP:
This features works well with the IN/NOT IN operator
given the nature of the output -Text Collection of Ids -
#LEBLOGDUCONSULTANT
@NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS
05
Update Related Records
Select a new option in an Update element in a record triggered flow
You can select the relationship, or children to update
Specify the criteria for which children to update
1.
2.
3.
- Record-Triggered Flow
#LEBLOGDUCONSULTANT
@NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS
06
Formula Checking
The formula checking in this release is added to both Resources and Collection Filter
- Resources + Collection Filter
#LEBLOGDUCONSULTANT
@NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS
07
Flow Builder Enhancements
- Ability to Hide Resource Panel / Hidden by Default
In auto-layout you can expand or collapse the Resource Panel to your needs.
- Cut and Paste Elements in Auto-Layout
A new feature that allows you to cut and paste an element of your choice based on your needs.
- Search When Adding an Element in Auto-Layout
Search among elements and actions (even custom) of the flow when adding an element to the
auto-layout
- Bigger Screen Editor
This release also includes an enhancement on the size of the screen editor
#LEBLOGDUCONSULTANT
@NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS
08
Dynamic Forms For Flow Goes GA
- No longer a Beta Feature
Easy and fast field insertion to the screen flows
Added Feature : Record Type Filtering for Picklists
- Record Type Filtering for Picklists
You can now filter the picklist values depending on record type
No-Code Testing Goes GA
- No longer a Beta Feature
Create assertions to test the result of your flow and put it to work
#LEBLOGDUCONSULTANT
@NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS
09
Workflow Rules Creation Disabled
Continue with Workflow Builder’ Button is removed
Embed Screen Flows from LWC Components
A feature that was only available with Aura components, now in LWC with the new lightning-flow component
#LEBLOGDUCONSULTANT
@NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS
10
Dev
Features
@NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS
#LEBLOGDUCONSULTANT
NEW TOP FEATURES COMING TO SALESFORCE RELEASE WINTER'23 BY NBS CONSULTING
Apex Enhancement
- Use DataWeave in Apex to enable data transformation
Create wrapper classes.
Thanks to the new feature, it enhances native Apex data transformation support by
integrating Mulesoft’s DataWeave library to the apex runtime.
- Write clear and intentional Apex assertions
Apex already provided three assert methods:
System.assert()

System.assertEquals()

System.assertNotEquals()
➢
➢
➢
Sometimes these methods can be ambiguous as we can see in this example:
@NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS
#LEBLOGDUCONSULTANT
12
Apex Enhancement
- Write clear and intentional Apex assertions
New methods that are less ambiguous and more evident and more straightforward
are introduced.
- Call invocable actions from Apex (Generally available)
@NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS
#LEBLOGDUCONSULTANT
13
LWC Enhancement
- Enable third-party integrations with light DOM
What is the Shadow DOM?
.
"Shadow DOM is a standard that encapsulates the internal document object model (DOM) structure of
a web component. Encapsulating the DOM gives developers the ability to share a component and
protect the component from being manipulated by arbitrary HTML, CSS, and JavaScript."


To make a component render in light DOM, all we have to do is set the variable renderMode to ‘light’.
@NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS
#LEBLOGDUCONSULTANT
14
Source : https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.create_dom
LWC Enhancement
- Enable third-party integrations with light DOM
CSS theming and branding
Third-party tooling and testing
Accessibility:
Advantages of light DOM :
1.
2.
3.
Disadvantage : to not use case there is sensitive data
<label for="my-input">
<input type="text" id="my-input">
@NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS
#LEBLOGDUCONSULTANT
15
LWC Enhancement
- Build components in mixed shadow mode (Beta)
What is Polyfill ?
"In web development, a Polyfill is code that implements a feature on web browsers that do
not natively support the feature." (source : definition of Polyfill (programming), wikipedia)
-Synthetic shadow Polyfill
This feature is not enabled by default. To enable it we should contact Salesforce customer support.
@NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS
#LEBLOGDUCONSULTANT
16
LWC Enhancement
- Lightning web security by default
"Lightning Web Security (LWS) is replacing Lightning Locker that has been the default security
architecture for Lightning components. "
(source : Lightning web security FAQ, help.salesforce)
It supports Lightning Web Components only and it’s intended to support aura components over
several releases. This setting is enabled by defaults in all the new Salesforce orgs.
Create overlays with the new modal component
@NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS
#LEBLOGDUCONSULTANT
17
Retirement of API versions to 30.0
Versions 21.0 through 30.0 of the Salesforce Platform API are being retired in Summer ’23. They are
now deprecated and are no longer supported by Salesforce. The Release Card was first available in
Summer ’21 and this change was first announced in October 2020.
Where: This change affects these API versions:
Bulk API
REST API
SOAP API
21.0, 22.0, 23.0, 24.0, 25.0, 26.0, 27.0, 28.0, 29.0, 30.0
21.0, 22.0, 23.0, 24.0, 25.0, 26.0, 27.0, 28.0, 29.0, 30.0
21.0, 22.0, 23.0, 24.0, 25.0, 26.0, 27.0, 28.0, 29.0, 30.0
@NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS
#LEBLOGDUCONSULTANT
18
(Source : Legacy API Versions 21.0 help.salesforce.com)
Code Builder
@NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS
#LEBLOGDUCONSULTANT
19
Sources
https://automationchampion.com/2022/08/17/salesforce-winter23-release-quick-summary/
https://help.salesforce.com/s/articleView?id=000363550&type=1
https://help.salesforce.com/s/articleView?id=release-notes.salesforce_release_notes.htm&type=5&release=240
https://en.wikipedia.org/wiki/Polyfill_(programming)
https://help.salesforce.com/s/articleView?id=release-notes.rn_api_upcoming_retirement.htm&type=5&release=240
@NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS
#LEBLOGDUCONSULTANT
Follow US
@NBSCONSULTINGMA
@NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS
#LEBLOGDUCONSULTANT

Mais conteúdo relacionado

Mais procurados

Lightning web components - Episode 1 - An Introduction
Lightning web components - Episode 1 - An IntroductionLightning web components - Episode 1 - An Introduction
Lightning web components - Episode 1 - An IntroductionSalesforce Developers
 
Salesforce CPQ Online Training
Salesforce CPQ Online TrainingSalesforce CPQ Online Training
Salesforce CPQ Online TrainingPrasannakumar898
 
Salesforce CPQ by yuvaraj
Salesforce CPQ by yuvarajSalesforce CPQ by yuvaraj
Salesforce CPQ by yuvarajYuvaraj P
 
DevOps in Salesforce AppCloud
DevOps in Salesforce AppCloudDevOps in Salesforce AppCloud
DevOps in Salesforce AppCloudrsg00usa
 
Microsoft SQL Server Database Administration.pptx
Microsoft SQL Server Database Administration.pptxMicrosoft SQL Server Database Administration.pptx
Microsoft SQL Server Database Administration.pptxsamtakke1
 
Secure Salesforce: Lightning Components Best Practices
Secure Salesforce: Lightning Components Best PracticesSecure Salesforce: Lightning Components Best Practices
Secure Salesforce: Lightning Components Best PracticesSalesforce Developers
 
Database testing tutorial
Database testing tutorialDatabase testing tutorial
Database testing tutorialHarikaReddy115
 
Salesforce Development Best Practices
Salesforce Development Best PracticesSalesforce Development Best Practices
Salesforce Development Best PracticesVivek Chawla
 
Why Katalon Studio?
Why Katalon Studio?Why Katalon Studio?
Why Katalon Studio?Knoldus Inc.
 
Data driven testing
Data driven testingData driven testing
Data driven testingĐăng Minh
 
Salesforce Spring 23 Webinar
Salesforce Spring 23 WebinarSalesforce Spring 23 Webinar
Salesforce Spring 23 Webinarbrightgenss
 
Secure Coding: Field-level Security, CRUD, and Sharing
Secure Coding: Field-level Security, CRUD, and SharingSecure Coding: Field-level Security, CRUD, and Sharing
Secure Coding: Field-level Security, CRUD, and SharingSalesforce Developers
 
Salesforce Presentation
Salesforce PresentationSalesforce Presentation
Salesforce PresentationChetna Purohit
 
Build, train, and deploy ML models at scale.pdf
Build, train, and deploy ML models at scale.pdfBuild, train, and deploy ML models at scale.pdf
Build, train, and deploy ML models at scale.pdfAmazon Web Services
 
Angular - Chapter 9 - Authentication and Authorization
Angular - Chapter 9 - Authentication and AuthorizationAngular - Chapter 9 - Authentication and Authorization
Angular - Chapter 9 - Authentication and AuthorizationWebStackAcademy
 
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-insSalesforce Developers
 
Mutation testing (OOP 2012, 2012-JAN-24)
Mutation testing (OOP 2012, 2012-JAN-24)Mutation testing (OOP 2012, 2012-JAN-24)
Mutation testing (OOP 2012, 2012-JAN-24)Filip Van Laenen
 

Mais procurados (20)

Lightning web components - Episode 1 - An Introduction
Lightning web components - Episode 1 - An IntroductionLightning web components - Episode 1 - An Introduction
Lightning web components - Episode 1 - An Introduction
 
Salesforce CPQ Online Training
Salesforce CPQ Online TrainingSalesforce CPQ Online Training
Salesforce CPQ Online Training
 
Angular Unit Testing
Angular Unit TestingAngular Unit Testing
Angular Unit Testing
 
Salesforce CPQ by yuvaraj
Salesforce CPQ by yuvarajSalesforce CPQ by yuvaraj
Salesforce CPQ by yuvaraj
 
DevOps in Salesforce AppCloud
DevOps in Salesforce AppCloudDevOps in Salesforce AppCloud
DevOps in Salesforce AppCloud
 
Microsoft SQL Server Database Administration.pptx
Microsoft SQL Server Database Administration.pptxMicrosoft SQL Server Database Administration.pptx
Microsoft SQL Server Database Administration.pptx
 
Secure Salesforce: Lightning Components Best Practices
Secure Salesforce: Lightning Components Best PracticesSecure Salesforce: Lightning Components Best Practices
Secure Salesforce: Lightning Components Best Practices
 
Database testing tutorial
Database testing tutorialDatabase testing tutorial
Database testing tutorial
 
Salesforce Development Best Practices
Salesforce Development Best PracticesSalesforce Development Best Practices
Salesforce Development Best Practices
 
Why Katalon Studio?
Why Katalon Studio?Why Katalon Studio?
Why Katalon Studio?
 
Salesforce Deck Template
Salesforce Deck TemplateSalesforce Deck Template
Salesforce Deck Template
 
Data driven testing
Data driven testingData driven testing
Data driven testing
 
Salesforce Spring 23 Webinar
Salesforce Spring 23 WebinarSalesforce Spring 23 Webinar
Salesforce Spring 23 Webinar
 
Secure Coding: Field-level Security, CRUD, and Sharing
Secure Coding: Field-level Security, CRUD, and SharingSecure Coding: Field-level Security, CRUD, and Sharing
Secure Coding: Field-level Security, CRUD, and Sharing
 
Salesforce Presentation
Salesforce PresentationSalesforce Presentation
Salesforce Presentation
 
Build, train, and deploy ML models at scale.pdf
Build, train, and deploy ML models at scale.pdfBuild, train, and deploy ML models at scale.pdf
Build, train, and deploy ML models at scale.pdf
 
Angular - Chapter 9 - Authentication and Authorization
Angular - Chapter 9 - Authentication and AuthorizationAngular - Chapter 9 - Authentication and Authorization
Angular - Chapter 9 - Authentication and Authorization
 
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
 
Mutation testing (OOP 2012, 2012-JAN-24)
Mutation testing (OOP 2012, 2012-JAN-24)Mutation testing (OOP 2012, 2012-JAN-24)
Mutation testing (OOP 2012, 2012-JAN-24)
 
AngularJS
AngularJSAngularJS
AngularJS
 

Semelhante a NEW TOP FEATURES COMING TO SALESFORCE RELEASE WINTER 23 RELEASE BY NBSCONSULTING

SQL SERVER 2008 R2 CTP
SQL SERVER 2008 R2 CTPSQL SERVER 2008 R2 CTP
SQL SERVER 2008 R2 CTPGovind S Yadav
 
MySQL 8.0 Featured for Developers
MySQL 8.0 Featured for DevelopersMySQL 8.0 Featured for Developers
MySQL 8.0 Featured for DevelopersDave Stokes
 
Whats new in Enterprise 5.0 Product Suite
Whats new in Enterprise 5.0 Product SuiteWhats new in Enterprise 5.0 Product Suite
Whats new in Enterprise 5.0 Product SuiteMicro Focus
 
Operational Visibiliy and Analytics - BU Seminar
Operational Visibiliy and Analytics - BU SeminarOperational Visibiliy and Analytics - BU Seminar
Operational Visibiliy and Analytics - BU SeminarCanturk Isci
 
1 extreme performance - part i
1   extreme performance - part i1   extreme performance - part i
1 extreme performance - part isqlserver.co.il
 
Agentless System Crawler - InterConnect 2016
Agentless System Crawler - InterConnect 2016Agentless System Crawler - InterConnect 2016
Agentless System Crawler - InterConnect 2016Canturk Isci
 
SQL Performance Tuning and New Features in Oracle 19c
SQL Performance Tuning and New Features in Oracle 19cSQL Performance Tuning and New Features in Oracle 19c
SQL Performance Tuning and New Features in Oracle 19cRachelBarker26
 
High Performance SSRS
High Performance SSRSHigh Performance SSRS
High Performance SSRSBert Wagner
 
Customer FX Technical Reference Sheet
Customer FX Technical Reference SheetCustomer FX Technical Reference Sheet
Customer FX Technical Reference SheetGoodCustomers
 
SQLSaturday#290_Kiev_AdHocMaintenancePlansForBeginners
SQLSaturday#290_Kiev_AdHocMaintenancePlansForBeginnersSQLSaturday#290_Kiev_AdHocMaintenancePlansForBeginners
SQLSaturday#290_Kiev_AdHocMaintenancePlansForBeginnersTobias Koprowski
 
Accel_Series_2023Spring_En.ppt
Accel_Series_2023Spring_En.pptAccel_Series_2023Spring_En.ppt
Accel_Series_2023Spring_En.pptNTTDATA INTRAMART
 
Building Modern Data Platform with AWS
Building Modern Data Platform with AWSBuilding Modern Data Platform with AWS
Building Modern Data Platform with AWSDmitry Anoshin
 
MongoDB.local Atlanta: Modern Data Backup and Recovery from On-Premises to th...
MongoDB.local Atlanta: Modern Data Backup and Recovery from On-Premises to th...MongoDB.local Atlanta: Modern Data Backup and Recovery from On-Premises to th...
MongoDB.local Atlanta: Modern Data Backup and Recovery from On-Premises to th...MongoDB
 
Automate DG Best Practices
Automate DG  Best PracticesAutomate DG  Best Practices
Automate DG Best PracticesMohsen B
 
SQL Server 2017 - Mejoras Impulsadas por la Comunidad
SQL Server 2017 - Mejoras Impulsadas por la ComunidadSQL Server 2017 - Mejoras Impulsadas por la Comunidad
SQL Server 2017 - Mejoras Impulsadas por la ComunidadJavier Villegas
 
002 Introducing Neo4j 5 for Administrators - NODES2022 AMERICAS Beginner 2 - ...
002 Introducing Neo4j 5 for Administrators - NODES2022 AMERICAS Beginner 2 - ...002 Introducing Neo4j 5 for Administrators - NODES2022 AMERICAS Beginner 2 - ...
002 Introducing Neo4j 5 for Administrators - NODES2022 AMERICAS Beginner 2 - ...Neo4j
 
MySQL 8 - UKOUG Techfest Brighton December 2nd, 2019
MySQL 8 - UKOUG Techfest Brighton December 2nd, 2019MySQL 8 - UKOUG Techfest Brighton December 2nd, 2019
MySQL 8 - UKOUG Techfest Brighton December 2nd, 2019Dave Stokes
 
Airbyte - Series-A deck
Airbyte - Series-A deckAirbyte - Series-A deck
Airbyte - Series-A deckAirbyte
 

Semelhante a NEW TOP FEATURES COMING TO SALESFORCE RELEASE WINTER 23 RELEASE BY NBSCONSULTING (20)

Nw2004s What Is New
Nw2004s What Is NewNw2004s What Is New
Nw2004s What Is New
 
SQL SERVER 2008 R2 CTP
SQL SERVER 2008 R2 CTPSQL SERVER 2008 R2 CTP
SQL SERVER 2008 R2 CTP
 
MySQL 8.0 Featured for Developers
MySQL 8.0 Featured for DevelopersMySQL 8.0 Featured for Developers
MySQL 8.0 Featured for Developers
 
Whats new in Enterprise 5.0 Product Suite
Whats new in Enterprise 5.0 Product SuiteWhats new in Enterprise 5.0 Product Suite
Whats new in Enterprise 5.0 Product Suite
 
Operational Visibiliy and Analytics - BU Seminar
Operational Visibiliy and Analytics - BU SeminarOperational Visibiliy and Analytics - BU Seminar
Operational Visibiliy and Analytics - BU Seminar
 
1 extreme performance - part i
1   extreme performance - part i1   extreme performance - part i
1 extreme performance - part i
 
Agentless System Crawler - InterConnect 2016
Agentless System Crawler - InterConnect 2016Agentless System Crawler - InterConnect 2016
Agentless System Crawler - InterConnect 2016
 
SQL Performance Tuning and New Features in Oracle 19c
SQL Performance Tuning and New Features in Oracle 19cSQL Performance Tuning and New Features in Oracle 19c
SQL Performance Tuning and New Features in Oracle 19c
 
High Performance SSRS
High Performance SSRSHigh Performance SSRS
High Performance SSRS
 
Customer FX Technical Reference Sheet
Customer FX Technical Reference SheetCustomer FX Technical Reference Sheet
Customer FX Technical Reference Sheet
 
SQLSaturday#290_Kiev_AdHocMaintenancePlansForBeginners
SQLSaturday#290_Kiev_AdHocMaintenancePlansForBeginnersSQLSaturday#290_Kiev_AdHocMaintenancePlansForBeginners
SQLSaturday#290_Kiev_AdHocMaintenancePlansForBeginners
 
Accel_Series_2023Spring_En.ppt
Accel_Series_2023Spring_En.pptAccel_Series_2023Spring_En.ppt
Accel_Series_2023Spring_En.ppt
 
Building Modern Data Platform with AWS
Building Modern Data Platform with AWSBuilding Modern Data Platform with AWS
Building Modern Data Platform with AWS
 
MongoDB.local Atlanta: Modern Data Backup and Recovery from On-Premises to th...
MongoDB.local Atlanta: Modern Data Backup and Recovery from On-Premises to th...MongoDB.local Atlanta: Modern Data Backup and Recovery from On-Premises to th...
MongoDB.local Atlanta: Modern Data Backup and Recovery from On-Premises to th...
 
Automate DG Best Practices
Automate DG  Best PracticesAutomate DG  Best Practices
Automate DG Best Practices
 
SQL Server 2017 - Mejoras Impulsadas por la Comunidad
SQL Server 2017 - Mejoras Impulsadas por la ComunidadSQL Server 2017 - Mejoras Impulsadas por la Comunidad
SQL Server 2017 - Mejoras Impulsadas por la Comunidad
 
Readme
ReadmeReadme
Readme
 
002 Introducing Neo4j 5 for Administrators - NODES2022 AMERICAS Beginner 2 - ...
002 Introducing Neo4j 5 for Administrators - NODES2022 AMERICAS Beginner 2 - ...002 Introducing Neo4j 5 for Administrators - NODES2022 AMERICAS Beginner 2 - ...
002 Introducing Neo4j 5 for Administrators - NODES2022 AMERICAS Beginner 2 - ...
 
MySQL 8 - UKOUG Techfest Brighton December 2nd, 2019
MySQL 8 - UKOUG Techfest Brighton December 2nd, 2019MySQL 8 - UKOUG Techfest Brighton December 2nd, 2019
MySQL 8 - UKOUG Techfest Brighton December 2nd, 2019
 
Airbyte - Series-A deck
Airbyte - Series-A deckAirbyte - Series-A deck
Airbyte - Series-A deck
 

Último

My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAndikSusilo4
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?XfilesPro
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 

Último (20)

My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & Application
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 

NEW TOP FEATURES COMING TO SALESFORCE RELEASE WINTER 23 RELEASE BY NBSCONSULTING

  • 1.
  • 2. ADM Features #LEBLOGDUCONSULTANT NEW TOP FEATURES COMING TO SALESFORCE RELEASE WINTER'23 BY NBS CONSULTING @NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS 02
  • 3. Data Table - In Flow Data Source : Record Resource & Record Collection Outputs Selection Modes : Multi-select (Checkbox), Single Select (Radio), or No Selection (View only) Column Configuration : Fields to display ○Required Selection Options (Min and Max) ○Default Selection Unsaved records can be displayed in the datatable within the flow Rich Text Field can now be displayed within the datatable in question Bonuses : #LEBLOGDUCONSULTANT @NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS 03
  • 4. IN/ NOT IN Operator - Get, Update, Delete Avoid queries within loops Get higher data volumes The ‘NOT IN’ operator is not selective There’s a limit of characters when it comes to the collection (100,000 characters) There’s two new operators added to the data elements in this release : Considerations The set values can only be non-record collection : ○Text ○Date ○Number ○DateTime ○Currency ○Boolean #LEBLOGDUCONSULTANT @NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS 04
  • 5. LookUp Screen Supports Multiple Records Set a Maximum for the Selections Record ID Collection to set a default selection The output is a text selection of the selected IDs The new feature in the lookup screen allows you to : TIP: This features works well with the IN/NOT IN operator given the nature of the output -Text Collection of Ids - #LEBLOGDUCONSULTANT @NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS 05
  • 6. Update Related Records Select a new option in an Update element in a record triggered flow You can select the relationship, or children to update Specify the criteria for which children to update 1. 2. 3. - Record-Triggered Flow #LEBLOGDUCONSULTANT @NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS 06
  • 7. Formula Checking The formula checking in this release is added to both Resources and Collection Filter - Resources + Collection Filter #LEBLOGDUCONSULTANT @NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS 07
  • 8. Flow Builder Enhancements - Ability to Hide Resource Panel / Hidden by Default In auto-layout you can expand or collapse the Resource Panel to your needs. - Cut and Paste Elements in Auto-Layout A new feature that allows you to cut and paste an element of your choice based on your needs. - Search When Adding an Element in Auto-Layout Search among elements and actions (even custom) of the flow when adding an element to the auto-layout - Bigger Screen Editor This release also includes an enhancement on the size of the screen editor #LEBLOGDUCONSULTANT @NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS 08
  • 9. Dynamic Forms For Flow Goes GA - No longer a Beta Feature Easy and fast field insertion to the screen flows Added Feature : Record Type Filtering for Picklists - Record Type Filtering for Picklists You can now filter the picklist values depending on record type No-Code Testing Goes GA - No longer a Beta Feature Create assertions to test the result of your flow and put it to work #LEBLOGDUCONSULTANT @NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS 09
  • 10. Workflow Rules Creation Disabled Continue with Workflow Builder’ Button is removed Embed Screen Flows from LWC Components A feature that was only available with Aura components, now in LWC with the new lightning-flow component #LEBLOGDUCONSULTANT @NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS 10
  • 11. Dev Features @NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS #LEBLOGDUCONSULTANT NEW TOP FEATURES COMING TO SALESFORCE RELEASE WINTER'23 BY NBS CONSULTING
  • 12. Apex Enhancement - Use DataWeave in Apex to enable data transformation Create wrapper classes. Thanks to the new feature, it enhances native Apex data transformation support by integrating Mulesoft’s DataWeave library to the apex runtime. - Write clear and intentional Apex assertions Apex already provided three assert methods: System.assert() System.assertEquals() System.assertNotEquals() ➢ ➢ ➢ Sometimes these methods can be ambiguous as we can see in this example: @NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS #LEBLOGDUCONSULTANT 12
  • 13. Apex Enhancement - Write clear and intentional Apex assertions New methods that are less ambiguous and more evident and more straightforward are introduced. - Call invocable actions from Apex (Generally available) @NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS #LEBLOGDUCONSULTANT 13
  • 14. LWC Enhancement - Enable third-party integrations with light DOM What is the Shadow DOM? . "Shadow DOM is a standard that encapsulates the internal document object model (DOM) structure of a web component. Encapsulating the DOM gives developers the ability to share a component and protect the component from being manipulated by arbitrary HTML, CSS, and JavaScript." To make a component render in light DOM, all we have to do is set the variable renderMode to ‘light’. @NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS #LEBLOGDUCONSULTANT 14 Source : https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.create_dom
  • 15. LWC Enhancement - Enable third-party integrations with light DOM CSS theming and branding Third-party tooling and testing Accessibility: Advantages of light DOM : 1. 2. 3. Disadvantage : to not use case there is sensitive data <label for="my-input"> <input type="text" id="my-input"> @NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS #LEBLOGDUCONSULTANT 15
  • 16. LWC Enhancement - Build components in mixed shadow mode (Beta) What is Polyfill ? "In web development, a Polyfill is code that implements a feature on web browsers that do not natively support the feature." (source : definition of Polyfill (programming), wikipedia) -Synthetic shadow Polyfill This feature is not enabled by default. To enable it we should contact Salesforce customer support. @NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS #LEBLOGDUCONSULTANT 16
  • 17. LWC Enhancement - Lightning web security by default "Lightning Web Security (LWS) is replacing Lightning Locker that has been the default security architecture for Lightning components. " (source : Lightning web security FAQ, help.salesforce) It supports Lightning Web Components only and it’s intended to support aura components over several releases. This setting is enabled by defaults in all the new Salesforce orgs. Create overlays with the new modal component @NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS #LEBLOGDUCONSULTANT 17
  • 18. Retirement of API versions to 30.0 Versions 21.0 through 30.0 of the Salesforce Platform API are being retired in Summer ’23. They are now deprecated and are no longer supported by Salesforce. The Release Card was first available in Summer ’21 and this change was first announced in October 2020. Where: This change affects these API versions: Bulk API REST API SOAP API 21.0, 22.0, 23.0, 24.0, 25.0, 26.0, 27.0, 28.0, 29.0, 30.0 21.0, 22.0, 23.0, 24.0, 25.0, 26.0, 27.0, 28.0, 29.0, 30.0 21.0, 22.0, 23.0, 24.0, 25.0, 26.0, 27.0, 28.0, 29.0, 30.0 @NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS #LEBLOGDUCONSULTANT 18 (Source : Legacy API Versions 21.0 help.salesforce.com)
  • 19. Code Builder @NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS #LEBLOGDUCONSULTANT 19
  • 21. Follow US @NBSCONSULTINGMA @NBS CONSULTING 2022, TOUS DROITS RÉSERVÉS #LEBLOGDUCONSULTANT