<<_ROW_WEB_LINK>> in email that is sent from workflow

I have a workflow that sends an email when something is changed in a table.
In the email I am including a <<_ROW_WEB_LINK>> to link the user to the form they need to approve.
What view is coming up? I want to go to one of the views I have created from a slice.
It looks like is just bringing up every field in my table? How can I remove some of the fields, for instance a virtual column is showing.,

0 5 1,193
5 REPLIES 5

What value are you placing in the <<ROW_WEB_LINK>> column?

I have not done the below but understand the workings. If others have better way, please contribute.


If you have a certain view in mind, you can launch the browser version of the app from the emulator and see what URLโ€™s are used for the views. Place that value in the column

Launch Browser Version
2X_4_452cc82578543f070d328a1592ae102fb245740a.png

For example, lets say I wanted a link to open a specific record in its Detail view. I can navigate to the Detail view and get this URL:

Now, that I can see where the row ID is inserted, I can use a CONCATENATE() function to dynamically insert the row ID when I create the email message and insert the link to go directly to the desired row information.

You can apply theses steps to virtually any view.

Yes, those work directly when the view doesnโ€™t have dynamic dependenciesโ€ฆsuch as passing the row ID.

Also, I am realizing that as you navigate through views, a โ€œbreadcrumbโ€ is included in the path in order to navigate backward. You may or, most likely, may not want that.

However, once you know how the parameters are passed, then you CAN just tack on those dependencies.

For instance, if I pick up the View Link from a random detail view, I get the below to some random/first row:

Now that I know how row IDโ€™s are included I can change it to this to get a specific row:

what would be the syntax on the <<row_web_link>>โ€ฆ
When the user clicks on that link I want it to go to the recordid (that the action was performed on), in this view

https://www.appsheet.com/start/3da3d52b-2c0f-4870-a899-3beb79ecc3e5#appName=Terminations-1247271&pag...

Hi @llheath

I am not sure if I understand your needs but in one my apps I also had to do sth similar. Anytime specific_condition=true bot sends email notification to manager and then he/she has to confirm specific operations with this row. So I needed to make HyperLinks inside of those emails that lead managers to those particular rows. My solution is sth like this:

CONCATENATE(โ€œpart of a link which I get from my browser link tab when I opened specific view that I wanted managers to be led toโ€; this should be in a place where word โ€˜rowโ€™ appears in that link โ†’ [_THISROW] โ† because bot was triggered after condition on this particular row; โ€œthe rest of a linkโ€)

Maybe you found solution, maybe not I do not know but I found this topic unsolved that is why I put my idea.
Hope it helps anyone,
Cheers

Top Labels in this Space