I am usign following JQL which works fine
project = projName AND status changed from "BU sign off" to Done during (2022-02-21, 2022-05-01) AND fixVersion = "R1" ORDER BY created DESC
But when I try to find out change by user
project = projName AND status changed BY "user" FROM "BU sign off" to Done during (2022-02-21, 2022-05-01) AND fixVersion = "R1 2022" ORDER BY created DESC
It gives below error. Any idea what is going wrong here. I can confirm the "user" exists in the system
The user 'user' does not exist and cannot be used in the 'by' predicate.
Hi @ayesha ,
The username in Cloud have changed in respect to Server or DC, so the JQL is also changed, especially the username part.
This link should help you digging.
But basically you should changed the "user" by the correct username in Cloud. You can check the user id by navigating to Admin>User management>Users and hoover on the user you would like to add on the JQL.
As the user id is long and convoluted you can open a new tab and copy the last set of numbers/letters after .../users/
Thanks @Sam Bartolome ! That link helped But what if I want to add as user from some group? That group Id is nto working
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For users in some specific groups you can use:
status changed by (membersOf("jira-users"))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @ayesha ,
you should use a valid username instead of "user". That clause allows you to retrieve all issue transitioned by a specific user in that time.
Hope this helps,
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For data policy reason I typed "user" in my question above. When I am actually putting JQL I am using actual user name from User management screen and it still fails.
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.