Dear Community,
I am using a Code Component in PowerApps which is developed using PowerApps Component Framework (PCF) to embed Power BI report. By default PCF provides the following methods which automatically get invoked when interacting through PowerApp:
- init()
- updateView()
- getOutputs()
- destroy()
Now, I have different Report tiles in my PowerApp. So, when user click on a particular tile, the Report Metadata is passed to PCF component based on which report is loaded.
But in the FIRST attempt, reports failed to load (updateView() in PCF Component is not called). But for all subsequent times, reports get loaded as expected (updateView() in PCF component called).
Can someone give an idea/ suggestion/ workaround/ different Approaches to address this issue?
Thanks.