Enhanced Related Lists in Salesforce
Advantages of Enhanced Related Lists: 1. Up to 10 fields can be shown2. No of Rows can be set3. Column width is auto-size4. Sorting is supported5. Column size can be ....
Advantages of Enhanced Related Lists: 1. Up to 10 fields can be shown2. No of Rows can be set3. Column width is auto-size4. Sorting is supported5. Column size can be ....
Patch Releases and Daily Releases are used to deliver scheduled and ad hoc application fixes and are typically seamless to customers. Whenever possible, patches and daily releases are deployed during ....
Sample Query: SELECT Id, Name, Profile.UserLicense.Name FROM User WHERE Name IN ( 'Magulan Duraipandian', 'Test Test' ) Output:
1. Create a Image URL field. 2. Create a Formula field with IMAGE().
Backslash and the following character form an escape sequence that represents special characters. Below a list of several useful escape sequences: ‘ - single quote ” - double quote – ....
Sample Code: var numberObject = 123.4567; document.write( numberObject.toFixed() ); // 123 document.write( numberObject.toFixed( 1 ) ); // 123.5 document.write( numberObject.toFixed( 2 ) ); // 123. 46 document.write( numberObject.toFixed( 3 ) ....
URL should be like below https://your_instance_URL/services/data/v46.0/query/?q=SELECT+Id+,+Name+from+Account HTTP Method should be GET. Note: Don't use the above one from an object where it has tons of data.
Custom Report Type with Reports as the primary object can be used to check Custom Report Type Usage in Salesforce. 1. Create a Custom Report Type with Reports as the ....
1. Go to Package Usage under setup. 2. Click Submit New Request button.
The below code will open Contacts tab when the popup is closed. Sample Code: Lightning Component: <aura:component implements="flexipage:availableForRecordHome,force:hasRecordId" access="global" > <section role="dialog" tabindex="-1" aria-labelledby="modal-heading-01" aria-modal="true" aria-describedby="modal-content-id-1" class="slds-modal slds-fade-in-open"> <div class="slds-modal__container"> <!-- Modal/Popup Box Header--> <header class="slds-modal__header"> <lightning:buttonIcon iconName="utility:close" onclick="{! c.closeModel }" alternativeText="close" variant="bare-inverse" class="slds-modal__close"/> <h2 id="modal-heading-01" class="slds-text-heading_medium slds-hyphenate">Header</h2> ....