Link to Row from Email Attachment

Hi,

Is it possible to link to a specific row in an app from an email attachment? 

I would like users who receive external notifications to be able to click a link to go to that particular record. 

Solved Solved
0 10 674
1 ACCEPTED SOLUTION

Found it.

You are not opening the quotes at the beginning of HYPERLINK expression.

Try HYPERLINK("https: .....

View solution in original post

10 REPLIES 10

- Go to a detail view;

- Copy the https link on the behavior section. Here is an example:

Matheus_Souza_0-1678453761712.png

 

- Paste the link on your template;

- Add the expression "&row=ROW_ID" at the end of your link. Remember to use the ENCODEURL expression in case your ROW_ID has special characters or spaces.

- Here is an example:

Matheus_Souza_2-1678453933395.png

 

 

 

Sorry for the delayed response, thank you for the help. 

Getting an error with the template attachment. I think I've maybe misunderstood the above?

I have tried the following examples but it comes back saying that there is unrecognized token. 

Sarah_Keown_0-1679563070617.png

Received this as an error as well 

Expression  was unable to be parsed: Sequence contains no elements.. ' was unable to be parsed: Sequence contains no elements..", "

 

Your second try is most close to a working solution. You need to add the column ROW_ID to the ENCODEURL expression and finish the HYPERLINK expression. Try this:

&ENCODEURL([ROW_ID]), "CLICK HERE")

Hope this helps you.

I changed as suggested, think I was also going wrong with the column name as mine is called " _RowNumber". Also tried using the table key value but received the same. 

Sarah_Keown_2-1679571748194.png

 

Sarah_Keown_1-1679571699336.png

 

It is linking to the app but its linking to a blank screen, where it is saying no items. 

Sarah_Keown_0-1679571674396.png

When the link initially loads I can see the https and then the row number but it changes after a few seconds

 

There's a piece of code missing right after the name of the view. It must be #view=Orders_Detail&row=" & ENCODEURL([OrderID]), "CLICK HERE")

Thank you. Still having issues with it, 

Sarah_Keown_1-1679575321743.png

Sarah_Keown_2-1679575348023.png

I copied and pasted from above so not sure what's happening, would it be an issue with having spaces?

It seems there is a link in your https://...  address, maybe you have to remove the link, and let it be plain text.

Removed the link and pasted as plain text only. Still received unrecognized token error. 

Found it.

You are not opening the quotes at the beginning of HYPERLINK expression.

Try HYPERLINK("https: .....

It is working perfectly thank you so much! 🙂

Top Labels in this Space