Category Archives: Salesforce

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 […]

El Framework para Pruebas de Salesforce
El Framework para pruebas de Salesforce es importante para asegurarnos de que nuestras aplicaciones no rompan la funcionalidad y se ejecuten como se espera. Luego de leer este post podrás aprender a describir las principales características y funcionalidades del Framework para pruebas de Salesforce, además de, las consideraciones y opciones disponibles para ejecutar pruebas seleccionadas […]

Lightning Web Component in Salesforce
A Lightning Web Component in Salesforce is a framework to build custom components, using HTML and modern Javascript, to run efficiently and save resources in our apps. Types of Lightning Web Component in Salesforce UI Component: Custom components that users can interact with via interfaces, buttons, forms, etc. Service Component (Library): Serves a helper library, […]

Lightning Web Component en Salesforce
Un Lightning Web Component (LWC) en Salesforce es un framework para construir componentes personalizados, usando HTML y Javascript moderno, para que nuestras aplicaciones funcionen de manera eficiente y ahorren recursos. Tipos de Lightning Web Components UI Component: Son componentes personalizados con los que los usuarios pueden interactuar a través de interfaces, botones, formularios, etc. Service […]

Ways to include Visualforce pages into Lightning Platform
Visualforce pages into Lightning Platform have several ways to be included in Salesforce. Do you want to know more about it? When an organization has complex business processes which require unique UI and are not support by existing functionality, we can use Visualforce pages, that’s the importance of it. Applications of Visualforce Pages into Lightning […]