With Salesforce Spring 21 release, Salesforce has introduced SOQL Fields functions. The FIELDS() function lets us select groups of fields without knowing their names in advance. This function simplifies SELECT statements, avoids the need for multiple API calls, and provides a low-code method to explore the data in the org. This function is available in API version…
Tag: Developer
Bulk API 2.0 Using Apex and Flow
Bulk API 2.0 Using Apex and Flow, After Winter 21 support of HTTP PATCH request we can use Bulk API in Apex to upload data in bulk.
Before Delete Flow in Winter 21
Before Delete Flow in Winter 21 are great addition. But this is the not only enhancement which we got in Winter 21. If you still have not checked the Salesforce Winter 21 release notes, you can check here. This release includes many feature related to Flow including Before Delete Flow, New Multi-Screen components, Auto layout…
Salesforce URL Hack in Lightning
URL Hack in Lightning, this is enough to get us excited. With the introduction of Lightning Experience, the most missing feature was URL Hack in Lightning Experience. With Spring 20 this feature has come back officially and with each release, it gets fixes and updates. So today we will cover this and we will check…
Avoid Recursive Trigger in Salesforce
Recursive triggers are big trouble for Salesforce developer. We always wanted to avoid recursive trigger in Salesforce. But if we have a big org which have multiple triggers with parent-child updates, include Process builder and Workflow field updates. Then we can easily face the recursive trigger error.So today I will share a few methods using…
Order of Execution in Salesforce
Order of Execution in Salesforce is very important for every developer. When on one object we have trigger, Process builder, Flow exist, then it is kinda necessary to know Order of Execution of them. Because without it either we didn’t get expected output or we overwrite the values. Before Salesforce executes these events on the…
Salesforce Summer 20 Release Notes : Quick Overview
I hope you are doing well and your dear ones are healthy amid the whole COVID -19 situation. As most of us working from home so I utilize this time to cover Salesforce Summer 20 Release Notes. With this release Salesforce has introduced many new feature which we will defiiniately used in our Development/Admin work….
Dynamic Picklist Value in Lightning Web Components
Today we will check how we can get Dynamic Picklist Value in Lightning Web Components without using Apex. We can use this component to get values for any picklist field. We are using attribute to pass the object and Field name and then the component will display available values. It also filter values based on…
Dreamforce 19: Highlights and Announcements
Dreamforce 19 is over and people are in still in fever of Dreamforce 19. As expected Salesforce made many new announcements, partnership in Dreamforce. Today I will be sharing few point from DF19 which I think will be useful for Developers. Evergreen: Serverless Functions & Compute for Customer 360 Platform This is a new addition…
Convert Lightning Web Components Open Source to Salesforce
In my previous post we checked how we can quickly create Open Source Lightning Web Components and connect them with Salesforce. Today we will check how we can convert Lightning Web Components Open Source and make it Salesforce compatible. For this we need to follow some steps:1. Create meta.xml file for all components as this…