Opportunity Booking using Salesforce Agentforce
We can handle Opportunity and Opportunity Product creations using the Salesforce Agentforce. In this Blog Post, I have used Apex Agent Action to handle the record creations. To setup Messaging ....
We can handle Opportunity and Opportunity Product creations using the Salesforce Agentforce. In this Blog Post, I have used Apex Agent Action to handle the record creations. To setup Messaging ....
SOQL to find Products without Price Book Entries: SELECT Id, ProductCode FROM Product2 WHERE Id NOT IN ( SELECT Product2Id FROM PricebookEntry WHERE Pricebook2Id = '01sSB000006IC45YAG' ) Sample Apex Code ....
@InvocableMethod annotation helps to invoke apex class and method from the Salesforce Agentforce Apex Action. @InvocableVariable annotation can be used to pass multiple parameters from the Salesforce Agent Action to ....
embedded_svc.settings.extraPrechatFormDetails can be used to pass data from Chat to Einstein BOT in Salesforce. Note: This Blog Post is applicable only for Chat feature and not for Messaging feature. 1. ....
Install the Agentforce for Developers VS Code Extension to use Salesforce Agentforce for Developers. https://marketplace.visualstudio.com/items?itemName=salesforce.salesforcedx-einstein-gpt It is easy to setup and use in the Visual Studio code. Please check the ....
In the Embedded Service Deployment for Messaging for In-App Web, we can add the Logo in the Branding section. I have used Asset File in Option 1. Check step 1 ....
We can achieve rows selections across multiple pages when using pagination in lightning-datatable, by storing the selected rows in a variable. Sample Apex Class: public class SampleLightningWebComponentController { @AuraEnabled public ....
We cannot hide and show the check box in the lightning-datable for the rows. So, for conditional selection, we can validate the selected rows and throw an error if the ....
Exception: "statusText": "Server Error", "errorType": "fetchResponse" Resolution: The exception is thrown when the Salesforce Lightning Web Component calls apex and the apex execution fails due to incorrect data passed from ....
In the Omni-Channel Flow, we have to route the Messaging Session to Agentforce Service Agent to invoke Agentforce for the Salesforce Messaging for In-App and Web. 1. Setup Salesforce Messaging ....