How to get User details along with User License using SOQL in Salesforce?
Sample Query: SELECT Id, Name, Profile.UserLicense.Name FROM User WHERE Name IN ( 'Magulan Duraipandian', 'Test Test' ) Output:
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> ....
Schedule and Manage Scheduled Emails in Lightning Experience Sales reps can specify email arrival times to increase the chances of an email being read. They can schedule an email to ....
Add lightning:actionOverride and lightning:hasPageReference to the list of interfaces in the aura:component tag. Sample Code: Lightning Component: <aura:component implements="lightning:actionOverride, lightning:hasPageReference" > <aura:handler name="init" value="{!this}" action="{!c.doInit}"/> </aura:component> Lightning Component JavaScript Controller: ....