Dynamic Tab Set with record detail in Salesforce
Sample Code: Apex Class:public class SampleAuraController { @AuraEnabled public static List < Knowledge__kav > fetchArticles() { return [ SELECT Id, Title FROM Knowledge__kav LIMIT 5 ]; }} ....
Sample Code: Apex Class:public class SampleAuraController { @AuraEnabled public static List < Knowledge__kav > fetchArticles() { return [ SELECT Id, Title FROM Knowledge__kav LIMIT 5 ]; }} ....
Lead Notification through Assignment Rule: 1. Create an Email Template. 2. In the Lead Assignment Rule criterion, select the Email Template. 3. In the Lead page layout, click Layout Properties ....
Visualforce Page: <apex:page controller="CommunityPageController"> Logged in As User? {!loggedInAsUserBool} </apex:page> Apex Controller: public class CommunityPageController { public Boolean loggedInAsUserBool { get; set; } ....
We have to use iFrame tag to display the Visualforce page and set supportsPopOut attribute to false in the Lightning Aura Component to hide Pop Out when displaying Visualforce page ....
Before enabling Experience Cloud(Community Cloud): After enabling Experience Cloud(Community Cloud): Vote for this idea - https://trailblazer.salesforce.com/ideaView?id=08730000000DiibAAC
Chat User License is needed for agents to accept and assist the customers via Salesforce Chat feature. So, kindly check whether enough Chat User licenses are available in Salesforce Company ....
To Access ConversationEntry entity, "Access Conversation Entries" permission is mandatory. To use the ConversationEntry object for Chat, enable the new Access Conversation Entries user permission. Reference Link - https://help.salesforce.com/articleView?id=release-notes.rn_api_objects.htm&type=5&release=232 This ....
Follow the below steps to change the Account. Option 1: Open the Contact record. Use "Disable Partner User" to disable the Contact as Partner User. Now change the Account. Option ....
Sample Code:trigger AccountTrigger on Account ( before update ) { for ( Account acc : trigger.new ) { acc.Rich_Text_Area__c = 'Updated on <br/>' + System.now(); ....
Use Height (in pixels) to increase Visualforce page height in Utility Items in Salesforce.