I am stuck. I have created some new functionality in a database that is ready except for one thing that I have been stuck on for a while.
Here’s what I am trying to do:
I have a newly created uidoc that contains a list of backend documents.
From a LS button I am trying to create a doclink in all of the backend documents in the list that will open the newly created ‘master document’
It sounds easy but I am not able to get it to work. The code I have now only creates a blank doclink. It doesn’t do anything when clicked, and the text shown when hovered over show the database name, not the text that I used in the appendoclink.
Here is a snippet:
Set doc = view.GetDocumentByKey(search)
Set rtitem = New NotesRichTextItem( doc, “Link” )
Set newdoc = uidoc.Document
Call rtitem.AppendDocLink( newdoc, “Master Invoice” )
Any help will be greatly appreciated!
Thanks, Shawn~