Hi,
We have a custom business app in Powerapps. It's light CRM and service desk app. We need a app where more than one user can use simultaneously. Is this possible?
We using Sharepoint Online list as a database.
Our app opens straight to the Customer -screen, where user select one of the customers from the gallery. When user press a customer item > app use this code on Gallery1_1 > OnSelect:
Navigate(Screen3; ScreenTransition.Fade; {CustomVariable: Gallery1_1.Selected})Then app goes to Screen3, where user can see those customer details what was selected. In Screen3 there is Gallery which has Item property:
First(Filter(BasicDetails; CustomVariable.ID = ID))
Is this CustomVariable attached to a current user? Or can another user change that variable value, when he/she using the app at the same time? and then messing up that First user details view.
Do we need make copies of that app and every user use own copy of app?
I ask this because sometimes the screen3 customer gallery incorrectly displays the information of another customer.