Hyperlink to a detail view with an email template

Aurelien
Google Developer Expert
Google Developer Expert

Hi Community,

You may have needed to send an email notification for a row being updated for example, and wishing to provide a direct link to its detail view from the email.

Here is the expression to use:

 

 

<<"https://www.appsheet.com/start/appIdValueโ€
& โ€œ#view=appViewName"
& โ€œ&row=โ€ & [_THISROW]
>>

 

Example:

 

<<"https://www.appsheet.com/start/123e-123e-123e-123e-123eโ€
& โ€œ#view=ORDER_Detail"
& โ€œ&row=โ€ & [_THISROW]
>>

 

Pay attention to the subtleties of query control:
- view is requested with #
- row is requested with &

 

Please note:

This only works for users who have opened the application before. Other users will be redirected to the application's default view, as set in Settings > General > Starting view.

Hope this helps!

6 2 110
2 REPLIES 2

Thank you very much @Aurelien for sharing this important tip.

Aurelien
Google Developer Expert
Google Developer Expert

You are welcome @Suvrutt_Gurjar !

I use that sometime, and I realized it was something quite useful and not mentioned clearly in the community or the documentation...hence this contribution ๐Ÿ™‚

Top Labels in this Space