Include hyperlink in a mail with a specific record to run


Hi everyone,

I am trying to send a notification e-mail with a hyperlink to a specific page to be approved.
I used the following code that I found in standard NAV (codeunit 440):



EXIT(STRSUBSTNO('DynamicsNAV:+//%1/RunPage?Page=%2',SystemUri.EscapeDataString(COMPANYNAME)
,PAGE::"MyPage"));



but this way I can’t get a specific record , it always gives the same result.
How can I get a specific record?Is there any other parameters to pass? and how?

Thanks in advance :)

Hi Poppins,

You need to add “&bookmark=%3” where %3 is set to the recordid of the record you want to link to.