How to update Salesforce Add Products layout?
Use the following steps to modify or update or change Salesforce Add Products layout from Opportunity. 1. Open "Price Book Entry" object from the Object Manager. 2. Select Search Layouts. ....
Use the following steps to modify or update or change Salesforce Add Products layout from Opportunity. 1. Open "Price Book Entry" object from the Object Manager. 2. Select Search Layouts. ....
Sub-Query can be used to Parent and Child records in Salesforce SOQL using REST API. Example: /services/data/v57.0/query/?q=SELECT+Name+,+(+SELECT+Name+FROM+Contacts+)+FROM+Account+WHERE+Id+=+'0013t00002XXRyDAAX' Workbench: Postman: https://youtu.be/367LYcU6vPs
When "Allow users to relate a contact to multiple accounts" is enabled in Account Settings in Salesforce Setup, then use Contact.RelatedAccount for Salesforce Sharing Sets for Experience Cloud Sites with multiple ....
To grant or provide Object Access to Salesforce Integration License User, then create a Permission Set with "Salesforce API Integration" license. Sample Permission Set: Use the Salesforce Integration API permission ....
? in Salesforce Apex used for Safe Navigation Operator. The safe navigation operator (?.) can be used for checking null references. Sample Code: Account objAcc; if ( String.isNotBlank( objAcc.Name ) ....
Screen Flow can be embedded in Lightning Web Component using lightning-flow tag. The Lightning Web Component can be used in Chat Messages (Text) on the Embedded Service Deployment to show ....
"Current Data Storage Usage" Section from Storage Usage in Salesforce Setup can be use to find the actively used Salesforce Objects in the Org. 1. Go to Storage Usage in ....
"Real-time and post-call analytics" should be enabled on the "Set recording and analytics behavior" Contact Flow element for real-time transcription in Salesforce Service Cloud Voice with Amazon Connect. If the ....
Messaging.reserveSingleEmailCapacity will thrown an error: System.NoAccessException: The organization is not permitted to send email if the Email Deliverability is not set in Salesforce. So, using it we can check whether ....
To have transcription in Salesforce Service Cloud Voice, the languageCode must be set, "Start media streaming" element should be invoked and finally the "kvsConsumerTrigger" lambda function should be invoked. The ....