Book Image

Mastering Salesforce CRM Administration

By : Rakesh Gupta
Book Image

Mastering Salesforce CRM Administration

By: Rakesh Gupta

Overview of this book

The book starts by refreshing your knowledge of common admin tasks. You will go over Lightning Experience and various security aspects. You will be shown how to implement territory management in your organization and make use of custom objects. From here, the book progresses to advanced configuration, data management, and data analytics before swiftly moving on to setting up advanced organization-wide features that affect the look and feel of the application. Extend the capabilities of your organization’s Salesforce implementation by optimizing and extending Sales Cloud, Salesforce1, and Service Cloud applications. This guide will equip you with the tools you need to build a successful career in Salesforce.
Table of Contents (20 chapters)
Mastering Salesforce CRM Administration
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Customer Feedback
Preface

A few points to remember


  1. Apex is a case-insensitive language.

  2. The New, Edit, and Delete options of Apex classes are not available in the production organization.

  3. As a best practice, start class names with an uppercase letter and method names with a lowercase letter.

  4. When deploying using a change set, it runs all the tests of Apex code. If you have low code coverage, you will not be able to deploy it and it will fail every time; however, with Force.com IDE, you can push code without coverage.

  5. The blob data type represented as binary data is stored in a single object.

  6. If you want to execute code repeatedly, use do...while, while, or for loops.

  7. Rolling back transactions is also supported by Apex.