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".
Path:/services/data/v53.0/quickActions/SendEmail HTTP Method:POST Body:{ "contextId" : "001D000000JRSGf", "record": { "HtmlBody": "<div+style="font-family:+Arial;+font-size:+14px;">Test</div>", "Subject": "InfallibleTechie", "ToIds": ["0038c00002bkSPZAA2"] }} Example: Output:
Check "Session Times Out After" in Profile's Session Settings.We can control Session Time Out on a user profile basis. When the profile is created it takes the default values from ....
Sample Code:const object1 = { 'test1' : 'testing'};console.log( object1.hasOwnProperty( 'test1' ) );console.log( object1.hasOwnProperty( 'test2' ) ); Output:truefalse
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 ....
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 ....
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, ....
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 ....
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 ....
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 ....