I have the following LiveReport that I can use to list the names of all users within a group, but I also want to display the Department Name for each user. What do I need to add to this to be able to have the Department Name display? Thanks...
select unique kuaf.name "User ID", kuaf.firstname || ' ' || kuaf.lastname "User Name", kuaf.mailaddress "eMail", kuaf.contact "Contact" from kuaf, (select childid from kuafchildren start with id in (select kuaf.id from kuaf, dtree where lower(kuaf.name) = lower(%1) and kuaf.type = dtree.dataid (+) and (lower(dtree.name) = lower(%2) or dtree.name is null)) connect by ID = PRIOR ChildID) a where kuaf.id = a.childid and kuaf.type = 0 order by 2, 1