Hello,
My organization makes use of Microsoft Exchange to manage the users.
We would like to have a periodic report of all the bugs assigned to the subordinates of a specific manager.
For example, in the development group, there are 4 teams led by tech leads and these lead report to a dev manager.
We'd like to have this weekly report sent to our distribution list showing which bugs are assigned to each developer in this group, the bugs' status, priority etc.
Thanks in advance!
Hi @David Kon
Out of the box you won't be able to identify the subordinates associated with the manager, this would require a plugin like nfeed and I'm not even sure it works with microsoft exchange.
What you could do is:
Use a JQL filter and have the distribution list subscribe to it:
https://confluence.atlassian.com/jira064/receiving-search-results-via-email-720416706.html
the JQL could look something like:
project= (choose if you want to be specific to the project) AND issuetype = bug AND assignee =membersof(group name)
You could extend this to multiple groups if needed.
Let me know if I missed something!
Hi Patrick,
Thank you for your reply.
I looked into the subscription solution and unfortunately, our server does not show this option, the subscriptions are only for me.
The Jira server version is 7.6.7.
David
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What @Alexey Matveev said. Check your permissions.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
You could create a filter for each group with JQL like this:
assignee in membersOf("group1")
Then you would create a subscription for this filter. Subscription lets you set a schedule to send filter results to subscribed users.
You can find more info about subscriptions here:
https://confluence.atlassian.com/jira064/receiving-search-results-via-email-720416706.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Alexey,
Thank you for your reply.
I looked into the subscription solution and unfortunately, our server does not show this option, the subscriptions are only for me.
The Jira server version is 7.6.7.
David
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Subscriptions should be there. Make sure that you have the Manage Group Filter Subscriptions global permission.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.