How to run a report in salesforce lightning

Available in: both Salesforce Classic (not available in all orgs) and Lightning Experience Available in: Essentials, Group, Professional, Enterprise, Performance, Unlimited, and Developer Editions To run a report, find it on the Reports tab and click the report name. Most reports run automatically when you click the name. From the reports tab, click New Report. … Read more

How to retrieve metadata from salesforce using visual studio code

How to get all metadata using Visual Studio Code from Salesforce? Install the below extension in Visual Studio Code. https://marketplace.visualstudio.com/items?itemName=VignaeshRamA.sfdx-package-xml-generator Pres Ctrl + Shift + P. Enter package and select Package.xml Generator: Choose Metadata Components. Choose Metadata Components for Package.XML. Click Update Package.xml button to update the package.xml file. How to get all metadata using … Read more

How to reset security token salesforce

To reset your token, contact your admin. From your personal settings, in the Quick Find box, enter Reset , and then select Reset My Security Token. Click Reset Security Token. The new security token is sent to the email address in your Salesforce personal settings. Why can’t I reset my security token in Salesforce? If … Read more

How to reset salesforce password

Reset User Password Click Admin. Open the Account Settings folder. Click My Users. Click the user’s username. Click Change Password. Enter and reenter the user’s old password. Enter a new password using the guidelines for Account Security Settings. Reenter the new password. More items… How do I find my Salesforce password? Reset Your Forgotten PasswordOn … Read more

How to remove user from salesforce

From Setup, enter Users in the Quick Find box, then select Users. Click Edit next to a user’s name. Deselect the Active checkbox and then click Save.Oct 12, 2015 How to delete the user from Salesforce? madhulika shah From Setup, enter Users in the Quick Find box, then select Users. Click the username of the … Read more

How to reduce view state size in salesforce

To reduce view state: Use filters and pagination to reduce data requiring state. Declare instance variables with a transient keyword when the variable is only useful for the current request. The view state includes all non-transient members in the controller and extension, as well as objects reachable from these non-transient members. In order to reduce … Read more