The typical login screen of your Salesforce instance looks like the below image. The right half of the page is completely used by Salesforce to promote its events, features etc. The left half of the page is login inputs with Salesforce logo. Have you ever had the thought to change the Salesforce login screen : To …
Quick Tip – Change Date format in Apex
If you use any date fields in Apex, it prints in this format System.debug('Date: '+contact.Date); Output: 2016-04-26 00:00:00 To change the format you can simply use: format() System.debug('Date: '+contact.Date.format()); Output: 26/04/2016