Hi all,
I am updating an existing record in a SharePoint list using following code:
Patch(SP_LIST, {ID: 4711, Status:"newStatusValue"})
4711 is the ID of an existing record.
Most of the time this is working as expected, but sometimes the user gets the above error:
Network error when using patch function: conflicts exist with changes on the server, please reload
I am not able to reproduce this issue, trying to modify the record in parallel using multiple instances of the app or modifying the record directly within the SharePoint list.
When I track the (successful) patch-action using the power apps monitor, I see this simple post:
https://germany-001.azure-apihub.net/apim/sharepointonline/some_ids_pointing_to_sharepoint/tables/LIST_ID/items/4711"
"body": {
"Status": "newStatusValue"
}
So I am wondering - how can there be conflicts at all?
Any ideas what I am doing wrong and what is going on behind the scenes?
regards
florian