Book Image

Salesforce Platform App Builder Certification Handbook

By : Siddhesh Kabe
Book Image

Salesforce Platform App Builder Certification Handbook

By: Siddhesh Kabe

Overview of this book

The Salesforce Certified Platform App Builder exam is for individuals who want to demonstrate their skills and knowledge in designing, building, and implementing custom applications using the declarative customization capabilities of Force.com. This book will build a strong foundation in Force.com to prepare you for the platform app builder certification exam. It will guide you through designing the interface while introducing the Lightning Process Builder. Next, we will implement business logic using various point and click features of Force.com. We will learn to manage data and create reports and dashboards. We will then learn to administer the force.com application by configuring the object-level, field-level, and record-level security. By the end of this book, you will be completely equipped to take the Platform App Builder certification exam.
Table of Contents (17 chapters)
Salesforce Platform App Builder Certification Handbook
Credits
About the Author
Acknowledgments
About the Reviewer
www.PacktPub.com
Preface
Index

Difference between 18 and 15-character record IDs


The Force.com platform uses two different types of record IDs to identify each record. When we open a record in Salesforce, it uses a 15-character ID; however, when we extract the data from the backend, it uses an 18-character ID.

The 15-character ID is case-sensitive, while the 18-character ID is not case-sensitive. The 18-character ID is used to migrate data from legacy systems or spreadsheets that do not recognize case-sensitive IDs. Functions such as VLOOKUP in Excel do not recognize case-sensitive IDs, and hence, there is a risk of data corruption. Therefore, we use the case-insensitive 18-character ID.

The record ID can be obtained using any one of the following three methods:

  • By analyzing the URL of the record detail page that contains the 15-character ID

  • By running a report on the object, which will return the 15-character ID

  • By downloading the ID using the data loader and fetching the 18-character ID

  • Administrators can also create formula...