How to check API requests that have been issued in the last 24 hours in Salesforce?
1. Go to Company Information. 2. Check API Requests, Last 24 Hours.
1. Go to Company Information. 2. Check API Requests, Last 24 Hours.
Replication uses your existing dataflows to determine which objects and fields to replicate. When you enable replication, Analytics validates these dataflows and displays any errors it finds. Fix errors before ....
1. Use POST method. 2. Set the end point. Sandbox - https://test.salesforce.com/services/Soap/u/35.0Production - https://login.salesforce.com/services/Soap/u/35.0 Use custom domain URL if my domain is enabled and prevent login from test or login.salesforce.com ....
Now you can make your Lightning pages more dynamic by configuring component visibility filters based on the permissions of the person viewing the page. For example, you can create a ....
1. Create a Contact Matching Rule. 2. Activate the Matching Rule. 3. Create a Lead Duplicate Rule using the Contact Matching Rule. 4. Activate the Duplicate Rule. 5. Open a ....
Salesforce Quick Text allows users to avoid Copy and Paste the text contents. To enable Quick Text, follow the below steps 1. Go to Quick Text Settings. 2. Enable Quick Text. To ....
External Services is a feature within Salesforce that leverages declarative tools to connect to an external endpoint, such as a credit service provider, and bring its logic into Salesforce. Go ....
ApexLogRepresents a debug log containing information about a transaction, including information about Apex, Visualforce, and workflow and validation rules. 1. Run the following SOQL Query in Developer Console using Query ....
Custom Metadata Type: Custom Metadata Type Data: Sample Apex class and test class: public class Sample { public static Sample__mdt getSampleValue( String strName ) { return [ SELECT DeveloperName, Description__c ....
Sample Code: Set < String > listsObjs = new Set < String > {'Account', 'Lead'}; Map<String, Schema.SObjectType > globalDescription = Schema.getGlobalDescribe(); for ( String obj : listsObjs ) { Schema.sObjectType objType = globalDescription.get( obj ); Schema.DescribeSObjectResult r1 = objType.getDescribe(); Map<String , Schema.SObjectField > mapFieldList = r1.fields.getMap(); for ( Schema.SObjectField field : mapFieldList.values() ) { Schema.DescribeFieldResult fieldResult = field.getDescribe(); String fieldLabel = fieldResult.getLabel().toLowerCase(); Schema.DisplayType fielddataType = fieldResult.getType(); if ( fielddataType == Schema.DisplayType.Phone ) { System.debug( objType + '.' + fieldResult.getName() ); } else if ( fieldLabel.contains( 'phone' ) && ! fieldResult.isCalculated() ) { System.debug ( objType + '.' + fieldResult.getName() ); } } } ....