Data Import Wizard Permissions in Salesforce
To import custom object data via the Data Import Wizard, User's Profile should have "Import Custom Objects" permission and "Create" permission on the custom object. "You do not have sufficient ....
To import custom object data via the Data Import Wizard, User's Profile should have "Import Custom Objects" permission and "Create" permission on the custom object. "You do not have sufficient ....
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 ....
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:
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:truefalse
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 ....