Example Of Salesforce SLDS Grid

The Salesforce Lightning Design System (SLDS) incorporates a versatile grid system, enabling the creation of responsive layouts for webpages and applications. Below is an illustration of utilizing the grid system to establish a three-column layout for a webpage: In this instance, the slds-grid class establishes a container for the columns, while the slds-wrap class ensures …

Example Of Salesforce SLDS Grid Read More »

LWC Custom Component For Hero/Image Banner

A Lightning Web Components (LWC) “Hero/Image Banner” component is a customized element designed for showcasing crucial information or content on a webpage. Generally featuring a prominent image or visual element, a headline, and accompanying text or details, the hero component’s specific design and capabilities will vary based on the particular implementation and project requirements. Below …

LWC Custom Component For Hero/Image Banner Read More »

Creating Scratch Orgs Using Visual Studio Code (Salesforce DX)

Scratch orgs are source-driven, transient environments that are entirely customizable. These orgs represent disposable deployments of Salesforce code and metadata. They can be configured fully, enabling developers to mimic various Salesforce editions, complete with diverse features and preferences. Sharing the scratch org configuration file among team members ensures a consistent development environment for everyone involved. …

Creating Scratch Orgs Using Visual Studio Code (Salesforce DX) Read More »

A Developer’s Perspective on Quality Assurance

Tricentis initially introduced Testim, formerly named Testim, in 2014 with the aim of enabling effortless creation of automated tests for anyone. During that period, Selenium reigned supreme, and the existence of tools aiding developers in test automation (such as Cypress, Puppeteer, and Playwright) was akin to science fiction. The beginning In the beginning, Testim’s primary …

A Developer’s Perspective on Quality Assurance Read More »

An Efficient And Rapid Method To Invoke Batch Apex in Salesforce

Collaborating within Salesforce’s shared environment often leads developers to encounter challenges such as SOQL limits, timeouts, and callout sequencing, causing frustration. How can one effectively execute extensive, intricate tasks on the cloud platform without concerns about timeouts or exceeding limits? Batch Apex comes to the rescue for executing these substantial jobs. This article delves into …

An Efficient And Rapid Method To Invoke Batch Apex in Salesforce Read More »

Comparing Object Types in Apex

At some stage, every developer will require verifying whether a generic SObject corresponds to a specific concrete SObject type. This scenario commonly arises when inspecting the owner of a custom object or the who.id and what.id of objects containing polymorphic keys like Task. Developers might consider using the Apex instanceof keyword for this verification. However, …

Comparing Object Types in Apex Read More »

Simplified Approach To Apex Test Code Coverage

In Salesforce.com, Apex developers need to ensure the existence of 75% test code before deploying their code to a production environment. This requirement serves as a valuable measure ensuring that your code remains self-sufficient over time. Moreover, it automatically identifies any potential code-breaking changes within your orgs in the future. Salesforce.com requires Apex coders to …

Simplified Approach To Apex Test Code Coverage Read More »