Hi,
We have setup a "Company-managed business" Project in Jira. It seems like it is not possible to change the parent issue for an existing issue in this setup. Could you please guide me how I can enable this feature so that we can, for example, move stories in between Epics?
In my screenshot, the issue is part of an epic but I cannot "move" the issue under a different epic (the option is missing):
Thank you for your help
Hello,
I can not see a condition for an issue to be unresolved. I think it should be like this:
Project = A AND customer in ("customer 1", "customer 2") AND labels = "label 1" and resolution is empty
Project = A AND resolution = Unresolved
AND customer in ("customer 1", "customer 2") AND labels = "label 1"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Project = A AND resolution = Unresolved
AND customer in ("customer 1", "customer 2")
This query alone gives me 74 issues
Project = A AND resolution = Unresolved
AND labels = "label 1"
This query alone gives me 8 issues
Now when I combine both, there are 0 issues
Project = A AND resolution = Unresolved
AND customer in ("customer 1", "customer 2") AND labels = "label 1"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It means that there are no issues like this. If you want to combine resultls of two JQL quereis, you should join both JQL queries with OR
Project = A AND resolution = Unresolved AND(customer in ("customer 1", "customer 2")
OR labels = "label 1")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are welcome!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.