Hello everybody,
I have finally run into an issue which I can not seem to fix. I am working on an application which generates pdf files based on info entered in the app. I have Flow working like a charm generating the PDF file when initiated from Powerapps, and the file is sucessfully created. However I wanted to implement a Flow to check if the file name the user is trying to use is not already taken. I got that Flow working perfectly aswell. This is where I ran into an issue. No matter what I try I can not get PowerApps to read the returned boolean although im pretty sure it should.
Code in my OnChange of the Title TextBox
haspdf is the boolean returned by the flow
UpdateContext({hPdf:'PowerApps-Schaltfläche–2'.Run(txtDocTitel.Text).haspdf});;Notify("" & hPdf)
I also tried
UpdateContext({hPdf:'PowerApps-Schaltfläche–2'.Run(txtDocTitel.Text)});;Notify("" & hPdf.haspdf)
I have tried using Set aswell as directly calling the flow when pressing the submit button. Maybe someone knows what I am doing wrong. Any help would be appreciated 🙂