I have found that if I use the LINKTOROW() function and define my Assign view as a detail view rather than a form view it works as a TWO-step process -
go to detail view
click Edit to go to form.
For user experience, I want to be able to go straight from the action to the custom form to update current row.
@John_Baer1, what @Cubyl helpfully shared is the “bare-metal” way of constructing an app link. Functions like LINKTOROW() and LINKTOVIEW() are ways to make it easier to construct these app links.
This article explains the options: help.appsheet.com - Column Type: App (Deep Links)
I think LINKTOFORM() might be useful for you Column Type: App (Deep Links) help.appsheet.com
I’m struggling to understand how I can tailor this line of code to my app.
Just like John, when I select a record row in the “Detail View” I want it to open that particular record in the “Customer Detail” view that I have created.
This view has just a few key pieces of data that fit on the screen and has a Off/On Button that can be quick tapped to show this record as job complete.
Basically I have a view with a bunch of people awaiting service.
Once there service person arrives they click that persons record from the “detail view” and get the slice view I created with a button that can mark that record complete (which will in turn remove them from the previous detail view).
When I try it I can make it go to the view I created but it just goes to the first record/row, not the actual row/record I selected.