Jump to content

Report : List of reports by role


mnoland2

Recommended Posts

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

  • Replies 0
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

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 account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...