Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Building Power Apps
Unanswered

Hide error message "Network error when using Patch function: The requested operation is invalid."

(0) ShareShare
ReportReport
Posted on by 406

In my Power apps customized Sharepoint form, there is a column that only accept unique values.

 

I've created a error message that shows OnFailure, if the user tries to save with a value that is already in the list: "The title xx is already taken".

 

But is there a way to get rid of the automatic error message that says  "Network error when using Patch function: The requested operation is invalid."?

 

MrtnM_0-1716552848106.png

 

 

My costom error message, copy/pasted from Solved: Re: Show error message when entering duplicate val... - Power Platform Community (microsoft.com)

 

If(
IsError(
Patch(
test3;
Defaults(test3);
SharePointForm1.Updates
)
);
// On failure
Notify(
If(//check for duplicates
!IsBlank(
LookUp(
test3;
Title = DataCardValue1.Text
)
);
("The title "& DataCardValue1.Text &" is already taken"); //if there is a duplicate, show this message
"" //if there is not a duplicate but there is a different error, show this message
);
NotificationType.Error
);
// On success
Notify(
"";
NotificationType.Success
)
)

Categories:

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Markus Franz – Community Spotlight

We are honored to recognize Markus Franz as our April 2025 Community…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,537 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 65,908 Most Valuable Professional

Leaderboard