Hi POWERful people!😊
I have a laptop inventory app that manages inventory in a sharepoint list.
1 - My app has a scan button (scan new) that scans barcodes and writes them to a sharepoint list.
2 - It has a second scan button (Scan&go), that is supposed to bring already existing entries on the sharepoint list.
so if John has a new machine, I scan his barcode (scan new) and it gets added to the sharepoint list. So when I click on the scan&go button, its supposed to bring up the detail screen with Johns details on the sharepoint list with the code below :
Launch(BarcodeScanner2.Value);Navigate(DetailScreen1,ScreenTransition.Fade, { scanvalue: BarcodeScanner2.Value } ).
The PROBLEM is, if I just viewed Johns machine details now and I click on scan&go to scan Davids machine, it brings up Johns machines details.. so the scan&go button brings up the detail screen of whatever the last viewed entry was.
please help.