Promise in Lightning Web Components is very important. In LWC we call methods Asynchronous. So we don’t have much control in order of execution if we have multiple methods. Prior to promises events, callback functions were used but they had limited functionalities and created unmanageable code. Promises are the ideal choice for handling asynchronous operations…
Callout from Lightning web components
Today we will check how we can make Callout from Lightning web components. We have two methods available here. Firstly we can call the Apex and from there we can make SOAP or REST API callout. and Secondly, we can directly make a simple REST call from the Lightning web components’ controller.So today we will…
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…
Test Salesforce Rest API using Postman
API/Integration is commanly used to connect different Apps. We can Test Salesforce Rest API using Postman. In salesforce we have bunch of Standard API are available. We can also develop our own custom API. But what if we need to give demo to third party so they can consume our API. For this we can…
Use SoapUI to Test Salesforce WebService
In the SOAP API, Web Services Description Language (WSDL) file is basically used to understand how to use the API. We can use SoapUI to Test Salesforce WebService (Custom and Standard). While Salesforce provided Standard WSDL we can also generate our own custom API. But how we can test them as third party to make…
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…
Dynamic Forms And Dynamic Actions
Dynamic Forms And Dynamic Actions is the next step in the evolution of Lightning record pages in Lightning Experience Salesforce. While Dynamic Forms adds a step of point-and-click customization for our Lightning record pages that previously required custom coding. And gives us ability to configure record detail page fields and sections inside Lightning App Builder. Dynamic…
Einstein OCR: Detect Text From Image
Einstein OCR provides OCR (optical character recognition) models that detect alphanumeric text in an image. In other words, Optical character recognition or optical character reader (OCR) is the electronic or mechanical conversion of images of typed, handwritten or printed text into machine-encoded text, whether from a scanned document, a photo of a document, a scene-photo….
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….