Symptoms By default both JIRA issue navigator and REST API return a maximum of 1000 search results. Hence when exporting to Excel, JIRA will only export the first 1000 issues. Cause The maximum allowable value is dictated by the JIRA property ‘jira.search.view.default.max’ which is set to 1000 by default. Unfortunately it is not possible to…
Read More
New plugin IS COMING! “Enlarge Your Excel Export”
In large instances, the list of issues in the search view should be limited by the Administrator, as a consequence, the Excel export is limited too…. With this plugin, a new option is shown to export up to 10000 issues with the current fields of the current view, search or filter. VERY HELPFUL SURE 😉…
Read More
New plugin FREE to print Cards in JIRA from the Rapid Board!
Hi all! This is an extension for your JIRA to print beautiful cards from the [AGILE RAPID BOARDS]. The original code author is qoomon.com [ Bengt Brodersen ] and now is a plugin by Rauliki with the permission of the original creator. Select the cards with “Shift” or “Ctrl” key Pressed. Now the button “Print”…
Read MoreJIRA JQL trick: Filter issues based on transition state execution date in JIRA
Very easy, see the JQL example: Project = “JIRA” AND Status CHANGED TO “In Progress” DURING (“2015/08/01″,”2015/10/05”) Other Syntax: This JQL shows all issues which have been in “Status A” for more than 14 days project=XXX and status changed to “Status A” before startofday(-14) and status = “Status A” This JQL shows all issues which…
Read MoreNew custom Listener to set DueDate of original ticket with 2 Days less in the tickets linked in JIRA with Groovy ScriptRunner
JIRA Service with Groovy ScriptRunner “Closing issues with status X with N days without updates” usign JQL compatible with JIRA 7
Clone or Copy a JIRA Project configuration with Groovy ScriptRunner (With or without issues)
It’s easy, only you need go to “Add-ons” and then to “Built-in Scripts–> Copy Project” Then only fill the form to clone or copy the configuration of a source project.
Read MoreJIRA Service with Groovy ScriptRunner “Closing issues with status X with N days without updates” usign JQL
Trick for better performance: “Limiting the number of issues returned from a search view”
JIRA allows you to view search results in several different formats, including Word, Excel, RSS or XML. A search view that returns too many issues can take a long time for JIRA to complete and can use a large amount of memory. It can be a factor in OutOfMemoryErrors in JIRA. An large RSS feed of search results…
Read More