Hi All,
Urgent Help needed to Fix the below Error
I have created a Power App that picks the Excel Data as an attachment and updates the SQL Table by running a Stored Procedure through Power Automate Flow.
Everything works as expected, but even after the successful execution of the Flow and Data getting stored in SQL Table the Power Apps still throws me an Error.
Below is the Formula that I have created On-Select
ForAll(abcde,Patch(NC_stg,Defaults(NC_stg),{xxx:Value(ThisRecord.xxx);yyy:ThisRecord.yyy}));ExecuteStoredProcedure.Run(); Notify("The Data was Synced Successfully", NotificationType.Success); Notify("There was an Error while Synching the Data", NotificationType.Error)
Below is the Power Automate Flow running -
I am not able to fix the notification functionality. If Success, it should display a success message or else an error message.
Thanks
Did this help resolve your issue?
This Issue is In relation the response and the notify in the app.
end the flow with this instead of the response you are using.
Update the formula in the app to:
ForAll(abcde,Patch(NC_stg,Defaults(NC_stg),{xxx:Value(ThisRecord.xxx),yyy:ThisRecord.yyy}));Set(varFlowResponse,ExecuteStoredProcedure.Run()); If(varFlowResponse.isSuccess = true,Notify("The Data was Synced Successfully", NotificationType.Success), Notify("There was an Error while Synching the Data", NotificationType.Error))
In Blue is the bits I changed. Let me know how this goes and if you have any questions.
It looks like you may have duplicated this question but I have added the answer on both so you can see it.
WarrenBelz
791
Most Valuable Professional
MS.Ragavendar
410
Super User 2025 Season 2
mmbr1606
275
Super User 2025 Season 2