How to make Salesforce Experience Cloud available in iFrame
1. Open Experience Cloud builder. 2. Open Security & Privacy. 3. In Clickjack Protection Level, select "Allow framing by any page(No Protection).
1. Open Experience Cloud builder. 2. Open Security & Privacy. 3. In Clickjack Protection Level, select "Allow framing by any page(No Protection).
Output: If you are looking for from BOT, then there is a known issue.https://trailblazer.salesforce.com/issues_view?id=a1p4V000001qL7BQAU&title=chat-button-s-customer-time-out-setting-not-respected-when-bot-transfers-chat-using-transfer-rule-action-and-time-out-is-set-above-bot-default-timeo
If Knowledge Tab missing in Salesforce Lightning Experience, then please enable "Enable Lightning Knowledge" in Knowledge Settings. 1. Go to Knowledge Settings in Setup. 2. Make sure "Enable Lightning Knowledge" ....
Exception: We couldn't display the conversation entries Resolution: To access Conversation Entry object/entity, "Access Conversation Entries" Permission is mandatory. Check the following link to know more about the permission "Access ....
Sample Code: HTML: <template> <lightning-card> <lightning-record-form record-id={recordId} object-api-name={objectApiName} fields={fieldsList} mode="edit" onsubmit={handleSubmit} onsuccess={handleSuccess}> </lightning-record-form> </lightning-card> </template> JavaScript: import { api, LightningElement ....
Sample Code: HTML: <template> <lightning-card title="Lead Creation"> <lightning-record-edit-form object-api-name="Lead" onsubmit={handleSubmit} onsuccess={handleSuccess}> <lightning-messages></lightning-messages> <lightning-input-field field-name="FirstName"></lightning-input-field> <lightning-input-field field-name="LastName"></lightning-input-field> <lightning-input-field field-name="Email"></lightning-input-field> <lightning-input-field field-name="Phone"></lightning-input-field> <lightning-input-field field-name="Company"></lightning-input-field> ....
Use Drilldown Editor: Sample XML: <form> <label>Sample Explore</label> <search id="Event_transcript_search"> <query>PLEASE ENTER YOUR QUERY</query> <earliestTime>$earliest$</earliestTime> <latestTime>$latest$</latestTime> </search> <search id="Event_key_search"> <query> PLEASE ENTER YOUR QUERY </query> <earliestTime>$earliest$</earliestTime> <latestTime>$latest$</latestTime> </search> <fieldset submitButton="true" ....
To ensure that chat sessions are continued across pages, place the Embedded Service component in your Experience Cloud site's template footer. Reference Article - https://help.salesforce.com/s/articleView?id=sf.snapins_chat_communities.htm&type=5
Sample Flow: Variables:listSelectedIndustries is a Collection Variable to hold list of selected industries to show it on the Selected Industries Screen.currentVal is to get the first value from the selected multi ....
instanceof can be used to find the object type in Salesforce Apex. TYPEOF can be used to find the object type in Salesforce SOQL. For Task Object with What field: ....