Here is an interesting application For LiveReports: With LiveReports, SQL, and knowledge of the schema one can virtually list out any information on a Livelink object. Combine this, with knowledge of the CGI syntax and you should be able to construct your own custom Livelink interface/report with HTML without using Builder or LAPI. (Yes - XML is the future for this but hear me out)Take for example this snippet of HTML:
testThis fetches the document test inside of Livelink. Now lets wrap this in a SQL (or LiveReport) to list all fetch links to documents beginning with test:Something like:select "
"+name+"" from dtree where name like 'test%'This works great outside of LiveReports. You have HTML output with fetch hyperlinks to documents named like test%.But luck would have it. LiveReports REPLACES the nicely formatted HTML with literal representation preventing HTML incorporating. Too Bad. This could be a HUGE time saver.Anyway around this? Anyone else interested or doing this? OT your thoughts?Ray generate HTML tags within my SQL to select "TD>
"+rtrim(name)+"" from dbo.dtree where name like 'Test%%' order by name