Hi Amazing folks!
I have a canvas app that stores information on a SharePoint list. (that works)
I have a scan button that patches barcodes to the serial column on that SharePoint list. (that works)
problem is, after scanning the barcode, it goes directly to the list not allowing me to first edit (put in other fields) with the following code:
Patch('inventory SP TEST', {Serial: BarcodeScanner1.Value, 'Who Scanned': User().FullName, 'When Scanned': Now()})

How do I get the edit screen to launch after scanning a barcode, so that the app launches the edit screen for me to input other fields before storing in SharePoint?