How to pass Pre-Chat data from Chat to Einstein Bot in Salesforce?
1. Create a custom field in Case object to get the values from Pre-Chat. 2. Create a custom field in Chat Transcript object to store the values from Pre-Chat. 3. ....
1. Create a custom field in Case object to get the values from Pre-Chat. 2. Create a custom field in Chat Transcript object to store the values from Pre-Chat. 3. ....
package.xml: <?xml version="1.0" encoding="UTF-8"?><Package xmlns="http://soap.sforce.com/2006/04/metadata"> <types> <members>Opportunity.Easy Deal</members> <name>BusinessProcess</name> </types> <types> <members>Opportunity.StageName</members> <name>CustomField</name> </types> <types> <members>Easy_Deal</members> <name>PathAssistant</name> </types> <types> <members>Opportunity.Easy_Deal</members> <name>RecordType</name> </types> <types> ....
Use sandbox attribute. <iframe src="Site_URL" sandbox=""> - Full Protection. <iframe src="Site_URL" sandbox="allow-forms allow-scripts"> - Allow form submission and scripts to run. For additional attributes, check https://www.w3schools.com/tags/att_iframe_sandbox.asp.
1. Create a Heroku Project. 2. Install Heroku Connect and Heroku Postgres add-ons. 3. Create a table in Heroku Postgres. https://www.infallibletechie.com/2021/03/how-to-create-table-using-postgresql.html 4. Create some data in Heroku Postgres table. https://www.infallibletechie.com/2021/03/how-to-createinsert-records-into.html ....
Sample Code:Apex Class:public class ExternalSharingController { @AuraEnabled( cacheable = true ) public static List < ConnectionWrapper > fetchConnections( String recId ) { List < ConnectionWrapper > listConnections = ....
In my implementation, I have shared Account records to another Salesforce org.1. Create a Custom Report type with Account as primary object and Connection Histories as related object..2. Now create ....
Sample Code:PartnerNetworkConnection network = [ SELECT Id FROM PartnerNetworkConnection WHERE ConnectionStatus = 'Accepted' LIMIT 1 ];List < PartnerNetworkRecordConnection > listConnections = new List < PartnerNetworkRecordConnection >();PartnerNetworkRecordConnection connection = new PartnerNetworkRecordConnection();connection.ConnectionId ....
1. Create the below Lightning Web Component for a Tab. HTML: <template> <iframe src={strURL} width="100%" height="100%"></iframe> </template> JavaScript: import { LightningElement, wire } from 'lwc'; import { CurrentPageReference } from ....
"INVALID_PARTNER_NETWORK_STATUS, invalid status for partner network operation: []" exception occur if the "LocalRecordId" attribute of "PartnerNetworkRecordConnection" is incorrect. Sample Code: PartnerNetworkConnection network = [ SELECT Id FROM PartnerNetworkConnection WHERE ConnectionStatus = ....
Sample Code: Apex Class: public class ForwardRecordToSFController { @AuraEnabled public static String forwardRecord( String recId ) { List < PartnerNetworkRecordConnection > checkConnection = [ SELECT Id FROM PartnerNetworkRecordConnection WHERE LocalRecordId ....