Custom Domain – Domain Registration in Salesforce
Custom domains allow customers to host their Salesforce Sites or Community on a domain name. Add a subdomain to your Salesforce org URL with the My Domain Salesforce feature. Having ....
Custom domains allow customers to host their Salesforce Sites or Community on a domain name. Add a subdomain to your Salesforce org URL with the My Domain Salesforce feature. Having ....
Comparable Interface is used to sort wrapper class list in Salesforce. For more info, visit the below link https://infallibletechie.com/2013/08/comparable-interface-in-salesforce.html Sample Code: Visualforce page: <apex:page showHeader="false" controller="Sample" > <apex:form > ....
The Comparable interface adds sorting support for Lists that contain non-primitive types, that is, Lists of user-defined types. To add List sorting support for your Apex class, you must implement ....
1. Governor limits for triggers? The maximum number of characters for a trigger is 1 million. Triggers call future methods, they will be subject to a limit of 10 future ....
1. Does Apex supports Generics? Apex partially supports Generic programming.For more info, visit the below linkhttp://salesforce.stackexchange.com/questions/1214/can-you-use-generics-in-apex 2. Can we write any Apex code in Configuration Only Sandbox? Yes. 3. How ....
Level A objects: Objects that are available in default in Salesforce. Example Account, Contact, Opportunity, etc. Level A objects: Objects that are available after enabling any feature in Salesforce. For ....
Logged in User is the user who has logged in. If the logged in user views any reports or dashboards, the result will be based on the specified user. While ....
To convert a String or Number field to Formula field in Salesforce, you can do the following workaround. We cannot convert String or Number field to Formula field in Salesforce. ....
To create Label in Visualforce page, apex:outputLabel tag is used. Sample Code: <apex:page showHeader="false" controller="Sample" ><apex:form > <apex:pageBlock > <apex:pageBlockSection columns="1" title="Member Information"> <apex:pageBlockSectionItem > <apex:outputLabel value="Name"/> <apex:inputText /> </apex:pageBlockSectionItem> ....
Standard objects: Objects already created for you by Salesforce are called standard objects. Salesforce comes with a number of Standard Objects that are part of of Salesforce. Standard Salesforce Objects ....