Blogs

  • Locate metadata references using the Salesforce Dependency API.

    When working on enhancements or user stories for the Salesforce application, we often introduce numerous new features. Before making modifications to the existing system, it is crucial to analyze the objects that are being referenced. Identifying these referenced objects is not always straightforward. Salesforce has addressed this challenge by introducing a new object called MetadataComponentDependency…

    Read more…

  • Transform a String into a Date in Salesforce.

    In Salesforce, Apex can be utilized for converting a string into either a date or a DateTime. In this blog post, we will demonstrate the process of converting a string into a date using Apex. Utilizing Date.parse to transform a String into a Date within Salesforce. The Apex Date class includes a method known as…

    Read more…

  • Invoking an Apex method periodically from a Lightning Component.

    I recently discovered that Salesforce Lightning Communities do not offer support for Streaming API or Events APIs. Consequently, you cannot utilize EMAPI on AURA/LWC for communities. This prompted me to explore a workaround in an Aura component.

    Read more…