How to use Record type in formula field in Salesforce?
Sample Formula Field: Output:
1. Go to Tools --> Account Settings. 2. Select the account and click "Change". 3. Select "More Settings". 4. Click "Exchange Proxy Settings". 5. Make sure "Always prompt for logon ....
Sample Javascript: {!REQUIRESCRIPT("/soap/ajax/20.0/connection.js")} {!REQUIRESCRIPT("/soap/ajax/20.0/apex.js")} var date1Str = {!YEAR(Sample__c.Sample__c)} + '/' + {!MONTH(Sample__c.Sample__c)} + '/' + {!DAY(Sample__c.Sample__c)}; var date1 = new Date(date1Str); var date2Str = {!YEAR(Sample__c.Sample__c)} + '/' + {!MONTH(Sample__c.Sample__c)} ....
To check the bulk data load jobs status in Salesforce, Go to Setup --> Jobs --> Bulk Data Load Jobs. Cheers!!!
If CSS style is not working in apex:outputText, use apex:outputLabel. Cheers!!!
Unlisted Group: Setup --> Chatter --> Settings --> Edit --> Enable Unlisted Groups. Unlisted groups are similar to private groups in that only members can view an unlisted group’s feed ....
Communities: The Community Engagement Console is now called Community Management, also referred to as the Community Management Page. Edit button is changed to drop down with Administration Settings and Community ....
1. Future methods, SOQL and DML:Avoid writing Future methods, SOQL and DML inside the "For" loop. 2. Bulkify the trigger: Start developing the logic for bulk of records getting inserted ....
The Email Notification can be turned off or the level can be changed using the below steps 1. From Setup, click Email Administration --> Deliverability. 2. ....
Salesforce Tooling API’s SOQL capabilities for many metadata types allow us to retrieve metadata using queries. Enable "Use Tooling API" to query setup objects in Developer console in Salesforce. Please check ....