Home
Extended ECM
API, SDK, REST and Web Services
How to search particular location in livelink?
Dave_Rambridge_(username@genzyme.com5_-_(deleted))
I am using C#.NET and LAPI to connect to livelink. Searching API is little difficult to understand and use. It requires hard coded node Id. 1) What's Node Id? What's volumeId?2) When you add a document in livelink, How can you create a url which can point to view of that document into livelink? 3)Any sample search code with folder location instead of node Id numbers?4)Is it possible to programmatically login the user and send them to a particular browse location within livelink?Thanks in advance,Malay
Find more posts tagged with
Comments
Linda_Kelly
Has anyone replied to you concerning this post yet? I am interested in similar functionality.
***_****_(citlon01admin_-_(deleted))
The following works for VB where OTLocation is the number is the folder object id. This can be found in your search engine under regions.Dim Where As String ' same entry enteres in the search criteriaWhere = "(OTLocation : 1234) and (OTName : "abc123.doc")"Dim queryResults As LonglStatus = LL_ValueAlloc(queryResults)' search LivelinklStatus = LL_ApplyQuery(lSession, intNodeID, vSelectlist, Where, 0, "", 0, 10000, "LivelinkQueryLanguage", queryResults)Dim intNumberofReturns As Long ' the number of documents returnedlStatus = LL_ValueGetLength(queryResults, intNumberofReturns)