Hi,
I am trying to modify an expression that generates dynamic url (called UNIQUE_ID for this example) to generate same result based on a different view.
The below is the existing found in template url generator found in a bot tasked with generating emails to specific clients:
https://www.appsheet.com/start/<<CONTEXT("AppID")>>?platform=desktop
#viewStack[0][identifier][Type]=Control
&viewStack[0][identifier][Name]=Menu
&viewStack[1][identifier][Type]=Control
&viewStack[1][identifier][Name]=Dashboard
&viewStack[1][mutableState][ControlName]=Dashboard
&viewStack[1][mutableState][Root]=gallery
&viewStack[2][identifier][Type]=Control
&viewStack[2][identifier][Name]=CONTROL_NAME
&viewStack[2][mutableState][ControlName]=CONTROL_NAME
&viewStack[3][identifier][Type]=View
&viewStack[3][identifier][Action]=detail
&viewStack[3][identifier][TableName]=EXISTING_TABLE
&viewStack[3][mutableState][TableName]=EXISTING_TABLE
&viewStack[3][mutableState][RowKey]=<<UNIQUE_ID>>
&viewStack[3][mutableState][SortBy][0][Column]=submitted_dt
&viewStack[3][mutableState][SortBy][0][Order]=Descending
&appName=<<CONTEXT("AppName")>>
I am not familiar with this expression, but I noticed that CONTROL_NAME refers to an existing item on the Menu page. EXISTING_TABLE refers to a table in a table in App and the result generated is around “UNIQUE_ID”. My problem is, when I replace “EXISTING_TABLE” with “NEW_TABLE”, the solution no longer works. Both Tables are slices of the same table. Is there something else I am meant to do to “NEW_TABLE” for this to work.
The easiest problem would be to modify EXISTING_TABLE to meet my use case, but the table is used for other purposes.
Ideas anyone? Even resource on how to use this would be great. Deeplink and link2row() would not work in my case.
Thanks