June 04, 2021

Before Save - Record Triggered Flow Scenarios



Hello Trailblazers !

Those who are familiar with Apex Trigger, must have written Before Update Trigger. Before-save updates in flows accomplish that same goal, but much more quickly because each record doesn’t get saved to the database again. Avoiding that extra save procedure means skipping another round of assignment rules, auto-response rules, workflow rules, and other customizations that take time to execute.

June 03, 2021

URL Hack in Lightning Experience - Create Record with Record Type Selection using Button or Link URL

Hello Trailblazers !

In this article, we are going to learn about simple salesforce url hack to create record with record type selection from related or unrelated object record page which will save our lots of time & without creating lightning component we can achieve this.

1. Let's create custom button from 'New Button & Link' 
/lightning/o/your_object_api/new?useRecordTypeCheck=1

January 31, 2021

FOR UPDATE Clause in SOQL

Hello Trailblazers !

In this blog post, we will see what is FOR UPDATE clause in SOQL, when to use it and how to use it. FOR UPDATE clause in SOQL is basically used to lock sObject records while they are being updated in order to prevent race conditions and other thread safety problem.

July 18, 2020

How to create custom modal popup in Action Button

Hello Trailblazers !

In this blog post, we are going to see how to create lightning component for custom modal popup which we can use in Lightning Action Button to override the standard modal popup. 

April 26, 2020

How to print a Lightning Component with record data - PART 2

Hello Trailblazers !

In this blog post, we are going to see how to print Lightning Component and how we can hide some elements while printing using standard slds class.

.slds-no-print selector is used to hide a component when printing a page.

How to print a Lightning Component & Hide print button when printing -PART 1

Hello Trailblazers !

In this blog post, we are going to see how to print Lightning Component and how we can hide some elements while printing using standard slds class.

.slds-no-print selector is used to hide a component when printing a page.

April 05, 2020

How to check critical updates in salesforce org

  • Critical Updates

Salesforce periodically releases updates that improve the performance, logic, and usability of Salesforce. When these updates become available, Salesforce lists them in Setup at Critical Updates and displays a message when administrators go to Setup.

How to Control Who Receives Process Builder or Flow Error Emails

  • What happens when a process or flow interview fails?

  1. When a process or flow interview fails, Salesforce sends an email with details about everything that was executed and what failed. The details include the data that's involved in the process or flow, including user-entered data. 
  2. When a user does something that triggers a process, such as create a record, and the process fails, the user gets an error message. The error message includes the process name, error ID, and sometimes technical information that the user can give to you, the Salesforce admin. You can use the error ID to locate the detailed error email that is sent when the process failed.

January 25, 2020