mnoland2 Posted December 28, 2010 Share Posted December 28, 2010 I want to create a report that has a listing of all the reports I have on my Jasper server and what "role" has access to that report.has any one done this or have any ideas on how i would go about this ? I have createed a report of user by role (see code below) if everything went well I would want to join this up to a list of reports this user has access to Code:SELECT "jiuser".username , "jiuser".fullname , "jirole".rolename , "jiuser".enabledFROM (public.jiuserrole "jiuserrole" INNER JOIN public.jirole "jirole" ON ("jiuserrole".roleid = "jirole".id)) INNER JOIN public.jiuser "jiuser" ON ("jiuserrole".userid = "jiuser".id) ORDER BY "jiuser".username ASC Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now