Hello I am using the code below to update my SharePoint list. It's been working great, and now all of a sudden i keep getting :
Conflicts exist with changes on the server, please reload. Server Response: MySharePointList failed: ETAG mismatch. clientRequestId: f8b53f8b-f8df-4271-aab8-989a56886aca serviceRequestId: f8b53f8b-f8df-4271-aab8-989a56886aca
It actually makes the update but throws the above warning to the user.
Refresh(MySharePointList);
ClearCollect(
colAvailability,
ListBoxAvail_1.SelectedItems
);
ForAll(
colAvailability,
UpdateIf(
MySharePointList,
ID in colAvailability.ID,
{Availability: {Value: Radio2_1.Selected.Value}}
)
);
Any help would be greatly appreciated
Thanks TJ