-
Run Salesforce Automation when a Sales Engagement Cadence is completed or the last step of a cadence is completed
In Salesforce, you cannot directly trigger a Flow or Apex Trigger when a Sales Engagement Cadence is completed, because Salesforce does not expose a native “Cadence Completed” event or field out-of-the-box that Flows or Apex can monitor. However, you can work around this limitation depending on what your goal is. Here is an overview of…
-
Visualforce-Based Solution to Display Raw HTML from API Responses in Salesforce (Workaround for LWC Limitations)
This article demonstrates a workaround of the limitation of LWC for displaying the HTML content retrieve through the external API endpoint. I used Visualforce Page to render the RAW HTML using an iframe of the child VF page. This approach ensures that when the page loads, the HTML is retrieved directly from the API and…
-
Add Clickable Hyperlink columns in Screen Flow Data Table Component Without Creating Formula Fields
When using Data Tables in Salesforce Screen Flows, there’s a common limitation that the table doesn’t support clickable links or showing field values from lookup relations directly. In this article, I demonstrate a simple workaround for this limitation without creating any extra fields in Salesforce. For example, I’ve created a Flow that shows all related…