For any given project within JIRA is there an easy way of identifying all the Kanban or Scrum boards associated with it (if there are any)? I appreciate that a board's filter doen't need to contain a project name (it could for example just show all issues of type 'Bug') but if it's easier I'd just be interested in boards (filters) where the project name is part of the JQL.
If there isn't an 'easy' way to achieve this does anyone know the SQL that I'd need to run to find this?
Thanks
If you go into any Issue associated with the project, you can click on "View on Board" on the lower Right of the Issue Screen, and it will show you all of the Boards that the issue is associated with. It's a roundabout way, but it works.
There is no "easy" way to do it because they are not directly linked.
SQL isn't going to help either. The filters are stored in a format such that your SQL boils down to "give me a list of all the filters so that I can read each one and interpret whether it might contain a project in its results". Most of them will be "project =" or "project in", but you're bound to have users like me who do things like "all bugs where I participated" (all projects that have bugs in their issue type scheme) or "... and category = xyz" (covers a set of projects without naming them directly)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The REST API offers a (rather tedious) way.
Get all boards with this call:
GET /rest/agile/1.0/board (Doc)
Then for each board returned get the projects for each board:
GET /rest/agile/1.0/board/{boardId}/project (Doc)
The response will include project info:
"self": "http://www.example.com/jira/rest/api/2/project/EX", "id": "10000", "key": "EX", "name": "Example",
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To get at least a 95% list of boards for a Project you can try this SQL:
select b.NAME as boardname, f.filtername, f.reqcontent from AO_60DB71_RAPIDVIEW b, SEARCHREQUEST f where b.SAVED_FILTER_ID = f.id and reqcontent like '%YOURPROJECTKEY%'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This doesn't work if you have similar project key's or project name's like
1. ERP
2. ERP BIS
3. ERP SCS
etc.
any better solution ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
"View on Board" on the lower Right of the Issue Screen is helpful to some extent.
However it may miss some boards.
for instance: Issue Type = Story, Status = RELEASE. "View on Board" link shows 2 Scrum boards:
But it is missing two more boards:
Perhaps it misses only Kanban boards.
Full list of boards is available on any board screen under the project's icon on the top left corner and represented as (...) button (JIRA 6.4.10)
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.