
Announcements
Hi There,
Need a suggestion for power app things,
I have list page contain 10 records. we can click on each record to go to next page and do some kind of approval. Issue is we have multiple users accessing page simultaneously. So what I need is if one is clicked on first record and in detail page, that particular record should disable for other users. So they can go to detail page for that particular record and do the approval at same time.
Thanks,
Srini
Hi @srinibashdash19 ,
We can create a new column to indicate who is in the detail page.
Set(temp,LookUp(LIST295,ID=ThisItem.ID).UserName);If(IsBlank(temp),Navigate(Screen2);Set(temp2,Patch(LIST295,LookUp(LIST295,ID=ThisItem.ID),{UserName:User().FullName}).ID),Notify("Someone is using this record"))
Navigate(Screen1);Patch(LIST295,LookUp(LIST295,ID=temp2),{UserName:""})
Best Regards,
Wearsky