Hi there!
I'd like to search for all issues that cirrently are assigned to their reporters, but I'm not able to find out how to do this in JQL. As it seems, Jira wants to resolve what is right of the operator as a user name rahter than another field value (thus giving something like "The value 'assignee' does not exist for the field 'reporter'." as a result).
How to solve this one?
Thanks in advance
Steffen
There is a hasSameValues function in JQL Tricks Plugin which can do this. But believe me, I wouldn't use this in a dashabord because the performance won't be that great.
It will be very handy if you want to just get a report or something by running this JQL. The function works for quite a lot of fields as long as they are comparable and the performance varies depending up on the fields.
Evaluating the plugin is a good idea. And yes, it is commercial.
Hi Jobin,
this sounds like a good idea. I'll have to check, maybe this plugin already is installed in our environment.
I'd use it only for reporting, once a week or so.
Thanks you!
Steffen
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
JQL Tricks literally did the trick \o/
Thanks again, much apprechiated!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I cant get issue in hasSameValues("assignee", "reporter") to work even if there is really a ticket which is assigned to its reporter.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have done many attempts to execute this query on JQL and didn't succed. I've read some of the documentation about JQL an didn't find a way to run this query either.
I believe this happens because both "assignee" and "reporter" require a value to be compared.
But anyways, you can easily run this query with the SQL or MYSQL command line:
SELECT * FROM jiraissue WHERE assignee = reporter;
I Hope I have helped.
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.