How to get Topics created by me in Salesforce?
SOQL:SELECT Id, Name, CreatedById FROM Topic WHERE CreatedById = '0054x000003WYaSAAW'
SOQL:SELECT Id, Name, CreatedById FROM Topic WHERE CreatedById = '0054x000003WYaSAAW'
1. Configure Error Handler Dialog. 2. Instead of Transfer to Agent use Show a Menu with Options. Add some user friendly message to the user. Output:
Primary component:<aura:component implements="force:appHostable" > <aura:attribute name="showBool" type="boolean" default="false"/> <lightning:card> <a onmouseover="{!c.show}">View</a><br/> <aura:if isTrue="{!v.showBool}"> <section aria-describedby="dialog-body-id-98" aria-labelledby="dialog-heading-id-103" class="slds-popover ....
Sample Code:MessagingEndUser objMsgUser = new MessagingEndUser();objMsgUser.ContactId = '<ContactId>';objMsgUser.MessagingChannelId = '<Messaging Channel Id>';objMsgUser.MessagingConsentStatus = 'ImplicitlyOptedIn';objMsgUser.MessageType = 'Text';//For SMS Channel/*The phone number or Facebook page ID associated with this Messaging end user.*/objMsgUser.MessagingPlatformKey ....
1. In the Lightning Record Page, use the Knowledge component. 2. When you open a Case record, it will display the relevant Articles. 3. Attach Article can be use to ....
1. Create a Heroku App. 2. Go to Resource Tab. Install Heroku Connect and Heroku Postgres add-ons. 3. Create a table in Heroku Postgres. Make sure to create a column ....
Sample Code:/* Custom detail is to show it to the agent before accepting the Chat and for findOrCreate */liveagent.addCustomDetail( "Company", "Disney" );liveagent.addCustomDetail( "First Name", "Mickey" );liveagent.addCustomDetail( "Last Name", "Mouse" );liveagent.addCustomDetail( ....
Sample code: /* Custom detail is to show it to the agent before accepting the Chat and for findOrCreate */ liveagent.addCustomDetail( "First Name", "Mickey" ); liveagent.addCustomDetail( "Last ....
Agent Avatar image in Static Resource: Store the Avatar image in Salesforce Static Resource. Set the URL in embedded_svc.settings.avatarImgURL to set avatar image to the Embedded Chat in Salesforce. Sample ....
Visualforce components can be used to customize the appearance and behavior of chat windows. Check the below example. Visualforce Page: <apex:page showHeader="false"> <style> body { overflow: hidden; width: 100%; height: ....