Blogs

  • How can I process a JSON response in Apex Salesforce

    Introduction At times, I have encountered confusion regarding the process of parsing a JSON string to extract the desired value. Now, we will explore the steps involved in achieving this. Example JSON Simplified Approach This method I discovered is the easiest among all the ones I have attempted. You can simply copy the JSON string…

    Read more…

  • Utilizing Expressions in LWC with if true and if:false

    Expressions enable us to dynamically control the rendering and display of elements in the markup based on specified conditions. Aura Expressions In Aura, as shown above, we can directly write expressions in the markup. However, in LWC, it is not possible to directly write expressions in the markup. Instead, we need to write expressions in…

    Read more…

  • How to Pass the Entire Record to a variable in Salesforce Flow?

    SCENARIO We’ve screen flow that is called from a button from a record detail page. Now, we want to pass the recordId or entire record to flow so that we can get it without making any query. STEPS TO PASS RECORD ID The varaible “recordId” is a special resource in Salesforce Flows that automatically receives…

    Read more…