How to make users in Experience Cloud see each other in Salesforce?
1. Enable "Site User Visibility" in Sharing Settings.2. Enable "See other members of this site".
1. Enable "Site User Visibility" in Sharing Settings.2. Enable "See other members of this site".
Enable "Separate Experience Cloud site and Salesforce login authentication for employees." in the Internal User's Profile to prompt login when internal users access Experience Cloud Sites. When this option is enabled, ....
1. Edit the page layout. 2. Select the Gear Icon in "Address Information Section". 3. Enable Edit Page in Display Section Header On. Output: 'Copy Billing Address to Shipping Address' feature only works in ....
1. Create a Custom Report Type.2. Use Knowledge Articles as Primary object and Article View Statistics as the related object. 3. Use the Custom Report Type and create the report. Set ....
Sample Code: const object1 = { 'test1' : 'testing'}; console.log( object1.hasOwnProperty( 'test1' ) ); console.log( object1.hasOwnProperty( 'test2' ) ); Output: true false
substr() can be used to get first n characters from a field in Splunk. Syntax: substr(str, start, length) Syntax with Field Reference: eval Summary=substr(description,1,57) Example: eval Summary=substr(description,1,57) From the above ....
Styling hooks can be used to adjust lightning-accordion-section title CSS in Salesforce Lightning Web Component(LWC). Sample code: HTML: <template> <div class="slds-box slds-theme--default"> <lightning-accordion allow-multiple-sections-open> <lightning-accordion-section name="A" label="Accordion Title A"> Testing ....
Einstein Activity Capture(EAC) feature can be used through the "Einstein Activity Capture Standard" permission set for users who don’t have a Sales Cloud Einstein, Salesforce Inbox, High Velocity Sales, or ....
Sample JavaScript for Static Resource: window.ExampleJS = ( function() { return { exampleMethod: function() { console.log( 'Inside exampleMethod from External JavaScript' ); return 'Text from External ....
Sample External JavaScript Code: window.ExampleJS = ( function() { return { exampleMethod: function() { console.log( 'Inside exampleMethod from External JavaScript' ); } }; }()); Static ....