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.