Hi,
I'm playing around with PowerApps and trying to build up my skills. One feature I'd like to impliment in the app I'm designing at the moment, is a detailed error notification. This would be good for debugging, and if I can figure out how to save the details of the error I could also perhaps log them to a file at a later date.
Here is the code I have at the moment:
Patch( Table1, Defaults(Table1), {Fruit: TextInput1.Text}, {Age: TextInput2.Text} ); If( IsEmpty(Errors(Table1)), Notify( "Success", NotificationType.Success ), Notify( "Error Encountered", NotificationType.Error ) )
I'd like to change the "Error Encountered" part, to contain the patch error message, which can be seen when in the app studio (see attached - including a clientRequestId and serviceRequestId which I have omitted).
Any ideas on how this can be done? Many thanks.
Solved! Go to Solution.
Have you looked at the Errors function?
This will give you a Table of Errors which will include more detailed information.
Hope this helps.
Have you looked at the Errors function?
This will give you a Table of Errors which will include more detailed information.
Hope this helps.
Thank you for your response. Revisiting that link with fresh eyes, I found the solution.
My formula now looks like this and is working:
Patch( Table1, Defaults(Table1), {Fruit: TextInput1.Text}, {Age: TextInput2.Text} ); If( IsEmpty(Errors(Table1)), Notify( "Success", NotificationType.Success ), Notify( First(Errors(Table1)).Message, NotificationType.Error ) )
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Power Platform release plan for the 2022 release wave 2 describes all new features releasing from October 2022 through March 2023.
User | Count |
---|---|
204 | |
106 | |
56 | |
52 | |
41 |
User | Count |
---|---|
274 | |
156 | |
86 | |
81 | |
56 |