Buen dia,
Es factible crear un filtro que me permita identificar los issues de un proyecto que tengan linkeadas las epicas de otro proyecto?
Gracias
The simplest way is use JQL to create the filter where in the JQL resultset to include the Epic Link column. Afterward, you can export the resultset and conduct your reporting via Excel?
project = xxx and "epic_link" is not Empty
This will give you all issues within a given project where they roll-up EPICs. So if you look at the Epic Link column value in the export, you will see the actual EPIC issue keys.
Hope this helps.
Best, Joseph Chung Yin
Jira/JSM Functional Lead, Global Infrastructure Applications Team
Viasat Inc.
Hola @Joseph Chung Yin Gracias por tu respuesta... Sin embargo el objetivo final, es elaborar un plan de trabajo donde solo se visualice las issues del proyecto principal y las tareas del otro proyecto que están relacionadas a las épicas del proyecto principal... Por esta razón, se hace necesario identificar claramente las épicas del proyecto principal (bajo el key del mismo, que es el único dato en común que se visualiza en las issues)... Será factible?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Adriana.Agudelo tengo el mismo reto que tú, pero no encuentro respuestas.
issue IN linkedIssues("issueKey") solo puedo parametrizar un key de issue, y necesito que la búsqueda sea sobre todo un proyecto
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
:(... Ya empecé a buscar solución con power bi... Directamente por Jira no encontré como...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Puedes usar una consulta similar a esta:
project = XXXX AND "Epic Link" = "XXXX"
Por lo tanto, solo traerá problemas del proyecto A asociados con Epico del proyecto B
Si no funciona, describa con más detalle qué es exactamente lo que está tratando de obtener como resultado.
Fernando
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hola fernando, Realmente no es solo una epica... :(... necesito encontrar la forma de buscar las epicas por la key... para que asocie todas épicas del otro proyecto...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As you're on Jira Cloud, the correct answer is to get an app that provides JQL extensions you're looking for.
With standard JQL, you can only get a list of issues and export them to Excel for further processing. This works if you want to do a one-off analysis. If your use case is more dynamic than that, look beyond standard Jira.
Standard JQL doesn't easily allow it, but you can quickly find the results using our professional indexing service JQL Search Extensions
You can use this query to find all the children of the epics that are in project X, and their epics are in the project Y
issue in childrenOfEpicsInQuery("project = Y") and project = X
Check out the documentation for more examples.
If you have any other questions, please contact our support. We’ll be happy to help you!
Best regards,
Maurício
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Show up and give back by attending an Atlassian Community Event: we’ll donate $10 for every event attendee in March!
Join an Atlassian Community Event!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.