Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 21:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×After createing an epic in GH (v6.1.2) the epic can not be viewed on the plamming screen.
I found this - - https://confluence.atlassian.com/display/GHKB/Your+issue+XXX+has+been+created+but+is+not+currently+visible+on+the+Rapid+Board
but it did not resolve the issue. The "problem" is in the filter. If I configure the scrum board and set the filter to this:
project = abc
the epic displays as expected. If I configure the scrum board and set the filter to this:
project = abc AND fix version is EMPTY
the epic displays as expected. If I configure the scrum board and set the filter to this:
project = abc, AND fix version not in (blue, green, red)
The epic is not displayed. When I create a new epic, I get the message "Your issues XXX has been created but is not currently visible."
We need to set a scrum board to exclude specific fix versions. How do we do this and see our epics?
Unfortunately EMPTY is a magic value in JQL and does not match filters like 'not in' (since there is no value at all). Try a filter like:
project = abc and (fixversion = empty or fixversion not in (blue, green, red))
Thanks,
Shaun
Thank you Shaun!!!!!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks had a very similar problem with a board that I only wanted to show specific fixVersions but it wouldn't show any Epics on the board until I included ....OR issuetype = Epic into the query.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To fix this issue, assign your Epic issue (the JIRA issue representing the Epic) to the Fix-In Version(s) that will meet the filter criteria for inclusion. The epic information will magically appear when you do this.
This behavior still seems like a bug to me though.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did you try Shawn's suggestion above?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is pretty fundamental to the nature of how the boards work, before anything else happens the board selects relevant issues using the filter, only items that match the filter can appear.
Just use JQL like "... or ( issuetype = Epic and fixVersion = empty )" to pick up any Epics even if they don't have the fix version used for the rest of the board filter.
Cheers,
Shaun
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Shawn's answer is not relevant to my scenario. My issue is that the I'm creating multiple boards for one project. I have two boards, each filtered to show one fix-in version. I have issues already tagged with an Epic and the Epic information doesn't show on the board on which they're displaying. I'll admit this is a nonstandard use case. The work-around I posted does work but it's not readily obvious why the Epics are missing initially. I suspect that a variation on your response may work also (explictily filtering out the Epic issues on the board), but that's not intuitive to me initially since Epics are not conceptually issues (despite JIRA/GH treating them as such under the covers).
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.
+1 I see the same behavior when specifically filtering to a single version on a board. For whatever reason the Epics do not display on the left side.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What happens if you change the query to project = abc AND NOT fixVersion in (1.0,1.1,1.2)?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
John,
I modified the filter as you suggested. The results were the same, the epics still do not display in the SCRUM board.
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.