Formula field to find the last day of the month in Salesforce?
Sample Formula code: IF( MONTH( TODAY() ) = 12, DATE( YEAR( TODAY() ), 12, 31 ), DATE( YEAR( TODAY() ), MONTH( TODAY() ) + 1, 1) - 1) Cheers!!!
Sample Formula code: IF( MONTH( TODAY() ) = 12, DATE( YEAR( TODAY() ), 12, 31 ), DATE( YEAR( TODAY() ), MONTH( TODAY() ) + 1, 1) - 1) Cheers!!!
To cover the test coverage for getURL method, use Test.setCurrentPage(Page.PageName). Test.setCurrentPage(Page.PageName) will help you to cover the codes which makes use of ApexPages.currentPage().getUrl(). Cheers!!!
Sample code: CASE( MOD(TODAY() - DATE(1900, 1, 7), 7), 1, 'Sunday', 2, 'Monday', 3, 'Tuesday', 4, 'Wednesday', 5, 'Thursday', 6, 'Friday', 'Saturday' ) Cheers!!!
Salesforce security standards can be checked quickly from Health Check in Salesforce. Health Check lets you identify and fix security vulnerabilities in your password policies, network access configuration, and session ....
Lightning Connect provides seamless integration of data across system boundaries by letting your users view, search, and modify data that’s stored outside your Salesforce organization. For example, perhaps you have ....
Sample Code: Component Code: <aura:component > <!--<aura:attribute name="newAccount" type="Account"/> <ui:inputText label="Account Name" value="{!v.newAccount.Name}"/> <ui:inputText label="Account Number" value="{!v.newAccount.AccountNumber}"/> <ui:button label="Create Account" />--> ....
To call Future methods from Process Builder, call the future method from the in-vocable method. Check the below code for reference. Sample Code: public class LightningProcessBuilder { @InvocableMethod public static ....
Go to Company Profile --> Manage Currencies. The Active Currencies sections show the supported currencies in Salelsforce organization. Cheers!!!
1. Salesforce Lightning - https://www.infallibletechie.com/2015/05/salesforce-lightning.html 2. How to Enable Lightning Components - https://www.infallibletechie.com/2015/05/how-to-enable-lightning-components-in.html 3. Simple Salesforce Lightning app development - https://www.infallibletechie.com/2015/05/simple-salesforce-lightning-app.html 4. Lightning App Builder - https://www.infallibletechie.com/2016/04/app-builder-for-lightning-experience.html 5. Lightning Basic UI Elements - https://www.infallibletechie.com/2016/05/lightning-basic-ui-elements.html 6. Lightning Connect ....
External objects are supported in API version 32.0 and later. External objects are similar to custom objects, but external object record data is stored outside your Salesforce organization. For example, ....