Topics in Experience Cloud in Salesforce
Topics that are created by the internal Salesforce users are separate from the Topics that are created per each community under Content Management --> Topics. External/Guest user cannot access the ....
Topics that are created by the internal Salesforce users are separate from the Topics that are created per each community under Content Management --> Topics. External/Guest user cannot access the ....
1. Create an Apex Class to fetch currently logged in user details. public class PreChatValuesController { @AuraEnabled public static user fetchUserDetails() { User ....
Using Automated Invitation in Salesforce Chat, we can prompt the website visitor if they want to chat with an agent or service representative if the user or visitor has been ....
1. Define the id attribute for apex:pageBlock.2. Iterate using for loop based on the list size using JavaScript and use the below to collapse by default.twistSection(document.getElementById('{!$Component.pb}').getElementsByTagName('img')[i]); Sample Code:Visualforce Page:<apex:page controller="AccordionController"> ....
1. Setup Routing Configuration. 2. Create a Queue. 3. Create a Chat Button with the Queue created in Step 2. 4. Create a Chat Deployment. 5. Create Embedded Service Deployment. ....
Using aura:handler name = "init", we an invokeApex method from a Quick Action in Salesforce Lightning using Aura component. From the action attribute, call the JavaScript function. In the JavaScript ....
1. Install pgAdmin if you haven't installed it. https://www.pgadmin.org/download/ 2. Go to Resources Tab and click "Heroku Postgres". 3. Click Settings. Click Credentials. 4. Select Add New Server in pgAdmin. 5. ....
To connect Heroku Postgres from Visual Studio Code, check the below link. https://www.infallibletechie.com/2021/02/how-to-connect-heroku-postgres-from_17.html To insert data into Heroku Postgres table from Visual Studio Code and write back to Salesforce, follow ....
1. Port your number. Use the below link for doing this. https://docs.aws.amazon.com/connect/latest/adminguide/port-phone-number.html Note: It takes several weeks to do this sometimes. 2. Once ported, set up phone numbers for your ....
Sample Code:Visualforce Page:<apex:page controller="AccordionController"> <apex:pageBlock title="Accounts and related Contacts" tabStyle="Account" id="pb"> <apex:repeat value="{!listAccounts}" var="acc"> <apex:pageBlockSection collapsible="true" title="{!acc.Name}"> <apex:pageBlockSectionItem> <apex:repeat value="{!acc.Contacts}" var="con"> {!con.FirstName} {!con.LastName}<br/> </apex:repeat> </apex:pageBlockSectionItem> </apex:pageBlockSection> </apex:repeat> ....