function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Sayyada HabibSayyada Habib 

How to show QR Code in Flow Builder?

Hi,

I've created a QR code field for each customer record that is created in Salesforce and I'm trying to add this to a screen in flow builder. I am using the image display field in flow builder, however the QR code doesn't seem to be showing on the screen when I run the flow.

Any ideas on why this might be happening or what I can do to get this working?

Thanks
Raj VakatiRaj Vakati
You need to create a lightning component for the flow and add them to flow, builder, 

https://medium.com/my-journey-with-salesforce1-platform/lightning-component-to-scan-barcodes-using-salesforce1-e695470c2eb0

https://docs.blackthorn.io/docs/flow-screen-charge-component
https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/components_using_flow.htm
https://developer.salesforce.com/docs/component-library/bundle/lightning:availableForFlowActions/documentation
 
<aura:component implements="lightning:availableForFlowActions">
   // declare code here
</aura:component>

 
Sayyada HabibSayyada Habib
I've managed to create a QR Code for each customer record which reflects their license number. I now want to show the QR code on a screen in the flow builder so that it checks the license plate that the customer inputted on the first screen against the license plate that is stored in the customer record and output the correct QR code accordingly. Is there any way I can do this? Do I need to use a lightning component for this?

Thanks.