Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by DrDDT

  1. DrDDT

    Difference searching 'from here' or enterprise

    Thanks, this is the minor difference I was looking for.
  2. DrDDT

    Difference searching 'from here' or enterprise

    Hi, What is the difference between searching 'from here' on the enterprise main page, and searching using the enterprise slice? The enterprise slice is configured to exclude recycle bin and selects current version only. I notice a slight difference in results.
  3. DrDDT

    Merging Categories?

    Thanks for the help sofar. I'll download C# express, and try using that. Seems that C++ is not used very much anymore. It seemed like the logical choice to me since I initally learned programming in C(++)
  4. DrDDT

    Merging Categories?

    Thanks for the help sofar. I have a little trouble understanding the LAPI structure. The (very few) code examples on the knowledge centre are not very helpfull for the beginner. Are there any other sources for sample code, preferably C(++)?
  5. DrDDT

    Merging Categories?

    Thanks, I just managed to create some very basic Lapi code. Another question: How would I use Lapi to do the following: 1. Get all documents with certain categories applied. 2. For all found nodes, create new category 3. Fill new category with data from found category. Can you do step 1...
  6. DrDDT

    Merging Categories?

    Hi, Does anyone have example code I can use, preferable C? I do have extensive Livelink knowledge, but I've never used LAPI before.
  7. DrDDT

    Replicating folder structure?

    Is there any way to just replicate a folder structure from one Livelink instance to another? No content, just the folders. We have an EFS of >1TB, containing sensitive data that is not all allowed to be transfered to a test system. I'm still looking for the best way to replicate data between...
  8. DrDDT

    Merging Categories?

    Thanks for the reply. Is there any way to automate the multicategory search? Users are used to one country field, that searches over all country attributes in all relevant categories. For the merging part: Is there any way to do it without LAPI? I can write livereports/webreports, but I'm no...
  9. DrDDT

    Set passwords to 'hidden'?

    We're going to implement full DS synchronisations, so the problem will solve itself. Thanks.
  10. DrDDT

    Merging Categories?

    Hi! We have several categories, with the same attribute 'country'. In Livelink 8 we could search all the country attributes at once. In livelink 9 that's no longer possible. To solve this I'd like to merge the categories into one category. What is the best way to do this? We're currently on...
  11. DrDDT

    Set passwords to 'hidden'?

    Hi, We have some users in Livelink that need their passwords to be reset to 'hidden'. Is there any way to do this per user? Livelink only allows to do that for every user (except Admin).
  12. DrDDT

    Category Attribute LiveReport

    To find out the relevant id's, use function ?func=attributes.dump For example: http://localhost/Livelink/llisapi.dll?func=attributes.dump
  13. DrDDT

    Category Attribute LiveReport

    If you have knowledgebase access, check out the following article: https://knowledge.opentext.com/knowledge/llisapi.dll?func=ll&objId=3498953&objAction=ArticleView
  14. DrDDT

    Folder traversal livereport in MSSQL

    Thanks Greg, the user function on your website is very useful. I found another one that does work slightly different, and also returns the level: GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE FUNCTION getLLTree(@ParentID int = 2000) RETURNS @Result TABLE ( DataID int NOT...
  15. DrDDT

    Folder traversal livereport in MSSQL

    I googled that a stored procedure cannot do that. It is working though using a user function! I can do a 'select DataID from getLLTree(537310)' Where getLLTree is a user function that does the treewalking.

Part and Inventory Search

Back
Top