Category Archives: Salesforce

“Reports and Dashboards” Review for Associates (4/4)
Reports and Dashboards is the last section of the Salesforce Associate exam. Today, we are going to review the main concepts to help you do reviews before the Associate certification. This section of the exam is divided into two subsections: Describe reports on Salesforce. Describe dashboards on Salesforce. This section covers 15% of the exam, which means you’ll expect […]

“Data Model” Review for Associates (3/4)
Data Model is the third section of the Salesforce Associate exam. We are going to review the main concepts to help you do reviews before the Associate certification. This section of the exam is divided into three subsections: Explain the relationship between the core standard objects (account, contact, lead, opportunity, case). Given a scenario, determine […]

The “Navigation” Review for Associates (2/4)
Navigation is the second section of the Salesforce Associate exam. Today, we are going to review the main concepts to help you do reviews before the Associate certification. This section of the exam is divided into two subsections: Given a scenario, identify how a user can locate and access necessary information. Given a scenario, identify […]

“Salesforce Ecosystem” Review for Associates (1/4)
The Salesforce Ecosystem is the first section of the Salesforce Associate exam. Today, we are going to review the main concepts to help you do reviews before the Associate certification. This section of the exam is divided into four subsections: Given a scenario, describe various resources available to learn and apply in-demand Salesforce skills. Given […]

Roll-Up Summary Field in Salesforce
Roll-up Summary Field is a type of custom field on the parent record in master-detail relationships. In addition, use it to display calculations based on the child records related to the master. The functions that can be done with roll-up fields are: Count, Sum, Min and Max. Details of Roll-Up Summary Field Can only be […]

Advanced Data Model in Salesforce
Advanced Data Model in Salesforce is related to external Ids, external relationships and hierarchical relationships. As we reviewed in the previous post Data Model in Salesforce, Data Model is a collection of objects related each other to represent our data in the Salesforce Database. Now we are going to see more advance information about this […]

Data Model in Salesforce
Data Model in Salesforce can represent a collection of objects and fields in an app and how they are related to one another. That means, it can be created using Standard Objects, custom objects and relationships. Creating a Data Model in Salesforce Is a way to represent data in a database consisting of tables with […]

Write Unit Tests for Apex in Salesforce
Write unit tests for Apex is important to make sure the code is working and produces the expected results. In this article we will learn to write unit tests methods for Apex classes, triggers, controllers, flows and processes in Salesforce. Considerations to Write Unit Tests The test classes and methods must be annotated with @isTest […]

Escribir Unit Tests para Apex en Salesforce
Escribir unit tests en Apex es importante para asegurarse que el código funciona y produce el resultado esperado. En este artículo, vamos a aprender escribir pruebas unitarias para Apex classes, triggers, controladores, flujos y procesos en Salesforce. Consideraciones para Escribir Unit Tests Las clases y métodos de prueba deben crearse con la etiqueta @isTest y […]

The Test Framework in Salesforce
The Test Framework in Salesforce is important to make sure that our applications do not break functionality and works as expected. After read this post you will learn to describe the main features and functionality of the test framework in Salesforce. In addition, the considerations and options available for running selected tests when deploying Apex […]