I've build my first Powerapps in TEAMS with Dataverse.
The powerapps has 1 main screen and 1 screen with details
Mainscreen is a gallery of all records of the dataverse table with only a few important fields.
When clicking on the record you want to update.. it goes to a detailed screen with all fields.
In the detailed screen you can make updates to the record.
When saving the data by clicking on Save button.. this statement is called
Patch( 'xxxxx dbs', varFormData, HeaderRequester.Updates );
When I go back to the gallery I see the data is refreshed.
When I open multiple sessions (or different users) the updates are not visible to the other users.
I added Refresh('xxxxx dbs') before and/or after the Patch (tried all combination).. and still the updates are not visible to the other users.
Also check of the errors give me no error.. even when 2 users make updates at the same time
Notify("Is there an error?" & First(Errors( 'xxxxx dbs', varFormData )).Message );
The error is always empty.
Any idea how I can force the updates to be visible to the other users? Or how to force the updates to be realtime.. and not delayed?

Report
All responses (
Answers (