Login flows allow you to run automation or display messages after a user successfully logs in to Salesforce. In this post, I'll show you how to add an image to a login flow in Salesforce using a URL in a screen flow. For this setup you'll need: Login flow Custom label HTML/CSS knowledge Let's get started. Create a custom label Go to Setup > Custom Labels Click New Enter a name for the label eg LoginFlow Image Enter LoginFlow as the category Enter the following HTML snippet then click Save <img src="URL OF THE FILE TO DISPLAY alt=“file description”> Pro Tips Using a custom label allows for the image to be updated without changing the flow logic. Add CSS to style the image and any text you want to display. Create a screen flow Go to Setup In setup search enter flow Select Flows Click New > Screen flow Drag a screen element on to the canvas Enter a name and description for the screen Add a text output component In the formula editor select flow > label...
Field history tracking is a Salesforce feature that allows tracking of changes to object field changes over time. In today's post well cover: What is field track history in Salesforce Changes to field change history data retention coming in the Spring 19 release How to use SOQL and workbench to find fields with track history enabled What is Field Track History? Salesforce comes out of the box with field change tracking functionality for standard and custom object fields. When enabled, up to 20 fields can have changes tracked for most objects in Salesforce. The field value changes are stored in object "history" tables and can be viewed from the Object History related list on an object record, from history reports, weekly data exports, data loader and API access. Changes to field tracking history data in Spring 19 The Spring 19 release, which goes live in February 2019, brings the enforcement of Salesforce’s policy for retaining field tracked change da...