Transaction Security in Salesforce
Transaction Security is a feature that monitors Salesforce events in real time and applies actions and notifications based on rules you create. These rules, or policies, are applied against events ....
Transaction Security is a feature that monitors Salesforce events in real time and applies actions and notifications based on rules you create. These rules, or policies, are applied against events ....
1. Go to the Profile or the Permission Set used for Files Connect permission. 2. Add the External Data Source to the profile/permission set. 3. Go to Authentication Settings for External ....
Lightning Connect in Salesforce not available, then contact Salesforce.com support to enable it. If you are in a Developer Edition, then it will show up. If you are in a ....
1. Go to Company Information. 2. See Instance. (Or) 1. Go to "https://status.salesforce.com/status". 2. Click "My Domain" in the right top corner. 3. Enter the domain name and click "Search". For ....
Sample Query: SELECT Id, OldValue, NewValue FROM AccountHistory Cheers!!!
1. How to avoid other fields that are made as required in the VF page stopping to call an action in the apex using apex:actionSupport? Use apex:actionRegion tag. 2. How ....
1. Enable Track Field History for Knowledge Article Type. 2. Click "Set History Tracking". 3. Select the fields to track and click "Save" button. 4. Create a custom report type with Primary ....
EncodingUtil.urlEncode() encodes the special characters for correct URL String. Sample Code: String strURL = 'www.test.com?name=#1solutions'; strURL = EncodingUtil.urlEncode( strURL, 'UTF-8' ); System.debug( 'Encoded URL is ' + strURL ); Output:
If "Post to This Record missing in Process builder", enable Feed Tracking for the object. To know the step by step process for enabling Feed Tracking, check the below link ....
Sample Code: Date dat = System.today(); Integer yr = dat.year(); System.debug('Year is ' + yr); Cheers!!!