Salesforce Interview Questions with Answers Part 38
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. 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!!!
Global Quick Actions and Object Specific Quick Actions can be deployed via ANT tool in Salesforce. Sample Package.xml: <?xml version="1.0" encoding="UTF-8"?> <Package xmlns="http://soap.sforce.com/2006/04/metadata"> <types> <!--Global Quick Action --> <members>LogACall</members> <!--Object ....
Salesforce Experience Cloud/Community Cloud Pricing depends upon the volume of usage. Check the below link for Community Cloud Pricing in Salesforce https://www.salesforce.com/products/experience-cloud/pricing/ For License Types and comparison, check this - ....
Sample Code: component.set("v.newItem",{ 'sobjectType': 'Camping_Item__c', 'Name': '', 'Quantity__c': 0, ....
Sample Code: Component: <aura:component > <aura:attribute name="newItem" type="Camping_Item__c" default="{ 'sobjectType': 'Camping_Item__c', 'Price__c': 0, ....
Sample code: Component: <aura:component > <aura:attribute name="items" type="Account[]"/> </aura:component>