How to update api version in salesforce

Update API version Edit the trigger in my UAT sandbox environment to update the API version. Test trigger to validate that it functions in the new API version. Open Eclipse, and, in the project which corresponds to my sandbox, refresh the trigger from SalesForce. Deploy the trigger to production using the ‘Deploy to SalesForce’ option … Read more

How to unlock record in salesforce

Salesforce: Unlock Record button Pad lock icon will be disappear Record owner or users with ability to edit the record will able to edit the record In the object history, it will show date/time, user with action ‘Record unlocked.’ The approval process for the record still in place, approver still able approve or reject the … Read more

How to translate custom labels in salesforce

Translate Custom Label values In Salesforce Access custom labels. Click on New Custom Labels. We can use custom label name to access custom label value in visualforce page using $Label global variable. Enable the Translation Workbench. The Translation Workbench lets you specify languages you want to translate, assign translators to languages, create translations for customizations … Read more

How to track field history in salesforce

From Setup, enter Object Manager in the Quick Find box, then select Object Manager. Click the custom object, and click Edit. Under Optional Features, select the Track Field History checkbox. … Save your changes. Click Set History Tracking in the Custom Fields & Relationships section. … Choose the fields you want tracked. More items… How … Read more

How to track api calls in salesforce

In addition, Salesforce has a monitor to show you your API calls within the last 7 days. All you have to do is 1- enter your Salesforce account 2- Remove the Last part of the URL 3- paste the following part instead: /00O?rt=104&retURL=%2F00O&c=UN&c=FULL_NAME&c=EM&c=CID&c=TS&c=CC&duel0=FULL_NAME%2CUN%2CEM&scope=organization&details=yes like this: Ways to monitor API usage Navigate to Setup and enter … Read more

How to track activity history in salesforce

Go to Setup->Administrative Setup->Security controls->View Setup Audit trail. There you can see all the user activities. Actually just to clarify you cannot see “All” a users activity. From Setup, enter Object Manager in the Quick Find box, then select Object Manager. Click the custom object, and click Edit. Under Optional Features, select the Track Field … Read more

How to test wrapper class in salesforce

Test Class: @isTest private class TestWrapperController { public static void myUnitTest () { WrapperController.WrapperClass wrapper= new WrapperController.WrapperClass (); wrapper.name = ‘Test Wrapper‘; Full Answer What is the use of wrapper class in Salesforce? With the use of Wrapper class, we can store the data from multiple sObject. With the use of Wrapper class, we don’t … Read more

How to test salesforce

Best practice for Salesforce testing. Run tests as real user profiles; Test Data should be prepared for validating the reports functionality; The testing method must include functional testing, UI testing, regression testing, and system integration testing Full Answer What is the process to perform Salesforce testing? User Acceptance Testing Salesforce Users i.e the end-user who … Read more