hi,
when i run the query below in sql server it works fine, but then in the livereport I get ? as the query results on "status". i've put status in the display columns just the same as revisionno and i am not sure why the live report won't display it properly
select d.name, d.modifydate, doctype, docnum, d.dcomment,
ISNULL(l4.valstr, ' ') as status,
ISNULL(l3.valstr, ' ') as revisionno,
d.*
from vwCollections c
left outer join
llattrdata as l3
on (c.dataid = l3.id and c.version = l3.vernum
and l3.attrid = 3 and l3.defid = 325616)
left outer join
llattrdata as l4
on (c.dataid = l4.id and c.version = l4.vernum
and l4.attrid = 2 and l4.defid = 325616)
inner join
dtree as d
on (c.dataid = d.dataid)
where c.collectionid = 9146210
order by d.name