We can’t load this chat, because something went wrong – Salesforce Chat Issue
1. Check the OWD on Chat Transcript Object.If it is set to private, then you cannot view the Chat Transcript unless you are the owner or it is shared with ....
1. Check the OWD on Chat Transcript Object.If it is set to private, then you cannot view the Chat Transcript unless you are the owner or it is shared with ....
Sample Code:Component:<aura:component implements="force:lightningQuickAction,force:hasRecordId" controller="NewCaseController"> <lightning:recordEditForm objectApiName="Case" onsuccess="{!c.handleSuccess}" aura:id="myRecordForm"> <lightning:messages /> <lightning:inputField aura:id="field" fieldName="Subject" /> <lightning:inputField aura:id="field" fieldName="Origin" /> <lightning:inputField aura:id="field" fieldName="Reason" /> <div class="slds-m-top_medium"> <lightning:button type="submit" label="Save Record"/> ....
Digital Engagement Messaging allows customers to start conversations by sending texts to your designated phone number or sending Facebook Messenger messages to your Facebook page. Incoming messages are displayed in ....
Component:<aura:component implements="force:appHostable" controller="ContactController"> <aura:attribute type="Contact[]" name="contactList"/> <aura:attribute name="mycolumns" type="List"/> <aura:handler name="init" value="{!this}" action="{!c.init}"/> <lightning:datatable data="{! v.contactList }" columns="{! v.mycolumns }" keyField="Id" hideCheckboxColumn="true" ....
Use Cases: 1. Major or Minor Announcements 2. Sharing Files 3. Discussion Forums Report can be used to check the adoption. Check the following steps: 1. Create a Report on ....
1. Ten Minute Build The 10-minute build practice is an extreme programming practice where the code base is designed by the developer to be built automatically. Having a simple build ....
We can set up a report to run itself daily, weekly, or monthly and send the results automatically to the people who need to see them, so that we don’t ....
Now users with Partner Community and Customer Community Plus licenses can view the records of other external users within their account hierarchy. External account hierarchies take the complexity out of ....
Sample Code:import { LightningElement, wire } from 'lwc';import { CurrentPageReference } from 'lightning/navigation';export default class Sample extends LightningElement { @wire(CurrentPageReference) currentPageReference; connectedCallback() { console.log( 'Param ' + ....
Salesforce Validation Rules are stored in ValidationRule entity. So, we can query the ValidationRule entity to fetch Salesforce Validation Rules using Tooling API. Query: SELECT Id, FullName, ValidationName, ErrorMessage FROM ....