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

Custom tabs


A custom tab is used to display the object data or other contents embedded in the application. Custom tabs have a unique tab style. We can choose the color and icon for the tab.

The following screenshot shows the different types of tabs:

We cannot create tabs for standard objects. There are three types of custom tabs:

  • Custom Object tabs:

    • These tabs display the custom object data.

    • They provide the options to Create, Read, Update, and Delete (also called CRUD rights) an object.

    • The plural name of the object is given to the tab by default.

    • Users can see the buttons to EDIT, DELETE, or add NEW records on the page layouts, depending on their permissions to the object. We will learn how to control the user settings in Chapter 7, Application Administration.

  • Web tabs:

    • We can display any external website using web tabs

    • Web tabs are useful if we want to show external web-based applications (for example, Google and Evernote) inside Salesforce

    • Web tabs are read-only websites that are loaded in iFrames...