Book Image

Salesforce Platform Developer I Certification Guide

By : Jan Vandevelde, Gunther Roskams
Book Image

Salesforce Platform Developer I Certification Guide

By: Jan Vandevelde, Gunther Roskams

Overview of this book

Salesforce Lightning Platform, used to build enterprise apps, is being increasingly adopted by admins, business analysts, consultants, architects, and especially developers. With this Salesforce certification, you'll be able to enhance your development skills and become a valuable member of your organization. This certification guide is designed to be completely aligned with the official exam study guide for the latest Salesforce Certified Platform Developer I release and includes updates from Spring '19. Starting with Salesforce fundamentals and performing data modeling and management, you’ll progress to automating logic and processes and working on user interfaces with Salesforce components. Finally, you'll learn how to work with testing frameworks, perform debugging, and deploy metadata, and get to grips with useful tips and tricks. Each chapter concludes with sample questions that are commonly found in the exam, and the book wraps up with mock tests to help you prepare for the DEV501 certification exam. By the end of the book, you’ll be ready to take the exam and earn your Salesforce Certified Platform Developer I certification.
Table of Contents (15 chapters)
Free Chapter
1
Section 1: Fundamentals, Data Modeling, and Management
4
Section 2: Logic, Process Automation, and the User Interface
9
Section 3: Testing, Debugging, and Exercise
12
Mock Tests

Formula fields

We have already explained what formula fields are in Chapter 1, Salesforce Fundamentals, but let's recap what we know about formula fields first. We'll learn more about their use in this section:

  • A formula is similar to a calculation that is executed or evaluated at the time we access/read the record, through the UI, a Visualforce page, the API, or Apex.
  • A formula field is read-only; you cannot edit it! You can edit the formula itself as an administrator from setup, but end users will never be able to edit the value/result from the UI.
  • A formula can make use of various data of the record itself or related data and even fixed variables to perform its calculations. Think of them as formulas you would use in an Excel spreadsheet. These formulas can make use of data and operations to calculate a new value for a data type.
  • Formula fields can return a value...