Link to home
Start Free TrialLog in
Avatar of jforget1
jforget1

asked on

Best option to link to a PDF

have a custom letter which is sent out to a user upon approval of a step. Right now an instructional PDF is on the doc, we are saving the approval notices and having this same doc in each letter is starting to flood our inbox. I want to have a link to the doc so it does not have to be embedded.

I have tried placing the doc on a page and setting up a hot spot link to the page, but although it works locally it is giving the error below when sent to the user. What is a good alternative here?

"Unable to display element, database does not contain design element"
Avatar of brwwiggins
brwwiggins
Flag of United States of America image

make sure you have the HTTP task running....then on your server place the PDF file in the domino\html folder underneath your data directory.

Then create a hyperlink to the file in the following format

http://servername.domain.com/<path relative to html directory>/filename.pdf
or if you just put it in the root of the html directory then
http://servername.domain.com/filename.pdf
Avatar of SysExpert
Other options are to put it in any of he great Notes Document databases.

Plenty of Doc lirary templates on the Notes server.

Simply create the database, give read access to everyone, open a blank doc and put the PDF on it, and then save it and send out the doc link to that specific doc.

Will work for all Notes users, and no changes needed on the server.

I hope this helps !
I agree with SysExpert. I had the same project in the past to link an image to a main document. I did it by storing the UNID of the doc with image in the main doc and created a button to open the image using the stored UNID.
Avatar of jforget1
jforget1

ASKER

So there is no simple way to have it link to something within the same DB? I may go with posting it on our training website instead.
ASKER CERTIFIED SOLUTION
Avatar of SysExpert
SysExpert
Flag of Israel image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
IIs it because I put this on page and not on a doc that it would not work?
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
THink I will use the doclink to a hidden record method. Thanks for all the help.