-----Original Message-----From: eLink Discussion: Livelink LiveReports Discussion [mailto:livereportsdiscussion@elinkkc.opentext.com]Sent: Friday, July 26, 2002 3:56 AMTo: eLink RecipientSubject: How can i report the folder path (within livelink) of a document ? How can i report the folder path (within livelink) of a document ? Posted by hpglc on 07/26/2002 04:52 AM I am trying to get a list of documents that were created between a particular list of dates, and their path, that is under what folder path they were created. Any help is appreciated.
-----Original Message-----From: eLink Discussion: Livelink LiveReports Discussion [mailto:livereportsdiscussion@elinkkc.opentext.com]Sent: Friday, July 26, 2002 11:37 To: eLink RecipientSubject: RE How can i report the folder path (within livelink) of a document ? RE How can i report the folder path (within livelink) of a document ? Posted by eLink on 07/26/2002 11:36 AM In reply to: How can i report the folder path (within livelink) of a document ? Posted by hpglc on 07/26/2002 04:52 AM Message from Marie Lindsay <marie@opentext.com> via eLinkI'm thinking along the lines of "easiest to implement" to "hardest to implement": How vital is it to see the path in the report? If you use the LiveReport report format, then you will have the Functions menu in the output, from which you can access the Info page. From the Info page you can see the "ancestry" of the items by clicking the "navigation" dropdown list at the upper left side of the page. Do you need to see the full path, or is the parent enough? If the parent is enough, then you can write something like select dtree.*, parent.name from dtree dtree, dtree parent where dtree.parentid = parent.dataid If you need to see the full path, I think the short answer is that you'll need to write a recursive query, joining DTree.ParentID to DTree.DataID of the parent. If you're using Oracle, I think you can use the CONNECT BY statement, but I don't know much about it. If you're using MSSQL, you'll probably need to write a stored procedure. -----Original Message-----From: eLink Discussion: Livelink LiveReports Discussion [mailto:livereportsdiscussion@elinkkc.opentext.com]Sent: Friday, July 26, 2002 3:56 AMTo: eLink RecipientSubject: How can i report the folder path (within livelink) of a document ?