-----Original Message-----From: eLink Discussion: Livelink LiveReports Discussion [mailto:livereportsdiscussion@elinkkc.opentext.com]Sent: Friday, July 05, 2002 6:05 PMTo: eLink RecipientSubject: Livereport vs Autolive report format Livereport vs Autolive report format Posted by UCLLUser1 (Strote, JC) on 07/05/2002 06:59 PM I want to get the functions pull down on report lines that contain data not from dtree. For instance I want to display ownewr name by linking with Kuaf table as well as the dtree id and title. When the users run the report I want them to be able to use the functions pull down to view the documents reported on. Is there a way to specify the functions pull down with non dtree fields?
-----Original Message-----From: eLink Discussion: Livelink LiveReports Discussion [mailto:livereportsdiscussion@elinkkc.opentext.com]Sent: Monday, July 08, 2002 10:55 AMTo: eLink RecipientSubject: There must be something I'm missing. When I add the fields from a table that I... There must be something I'm missing. When I add the fields from a table that I... Posted by UCLLUser1 (Strote, JC) on 07/08/2002 11:43 AM In reply to: RE Livereport vs Autolive report format Posted by eLink on 07/07/2002 09:27 PM There must be something I'm missing. When I add the fields from a table that I am selecting that are not from DTREE the screen displays 'an unknown feature is specified' in the columns identified from the non dtree table. I am trying to display fields from a specific category. Is there a special way I need to identify the non dtree fields? Here is my code.select h.dataid, h.name, a.valstr "Drawing No." , b.valstr "Rev", c.vallong "Title 1", d.vallong "Title 2", e.vallong "Title 3", u1.name "Originator", f.valstr "Status", g.valstr "Acct No", u2.name "Designer" from llattrdata a, llattrdata b, llattrdata c, llattrdata d, llattrdata e, llattrdata f, llattrdata g, llattrdata i, llattrdata j, llattrdata k, kuaf u1, kuaf u2, dtree h where (h.dataid = a.id) and (h.VERSIONNUM = a.VERNUM) and (a.DEFID = 4783562) and (a.attrid = 2) and (h.dataid = b.id) and (h.VERSIONNUM = b.VERNUM) and (b.DEFID = 4783562) and (b.attrid = 3) and (h.dataid = c.id) and (h.VERSIONNUM = c.VERNUM) and (c.DEFID = 4783562) and (c.attrid = 4) and (c.entrynum = 1) and (h.dataid = d.id) and (h.VERSIONNUM = d.VERNUM) and (d.DEFID = 4783562) and (d.attrid = 4) and (d.entrynum = 2) and (h.dataid = e.id) and (h.VERSIONNUM = e.VERNUM) and (e.DEFID = 4783562) and (e.attrid = 4) an! d (e.entrynum = 3) and (h.dataid = i.id) and (h.VERSIONNUM = i.VERNUM) and (i.DEFID = 4783562) and (i.attrid = 24) and (i.VALINT = u1.ID) and (h.dataid = f.id) and (h.VERSIONNUM = f.VERNUM) and (f.DEFID = 4783562) and (f.attrid = 27) and (h.dataid = g.id) and (h.VERSIONNUM = g.VERNUM) and (g.DEFID = 4783562) and (g.attrid = 28) and (h.dataid = j.id) and (h.VERSIONNUM = j.VERNUM) and (j.DEFID = 4783562) and (j.attrid = 26) and (j.VALINT = u2.ID) and (h.dataid = k.id) and (h.VERSIONNUM = k.VERNUM) and (k.DEFID = 4783562) and (k.attrid = 33) and (k.valstr = 'SEG - Superblock Electronic Group') and (f.valstr <> 'Released') order by k.valstr, f.valstr