Jira Custom Order By on Updated date/time - jira

I have got the below ORDER BY JQL script added to my boards. For some reason though the issues are not re-ordering. Is there something that I am missing?
ORDER BY updatedDate desc

JIRA boards can be set to sort by "Rank", which will override and remove any other ranking; see Enabling Ranking and Ranking an Issue. If that's not set, ORDER BY works for me in JIRA Cloud.

Related

Find JIRA issues that have not been updated

Is there a way to find, via the integrated search, JIRA issues that have not been updated for more than a certain number of days... in order to solve/delete them.
Thanks
In JQL can you try to use a filter like this :
updated > "-1d"
for tickets updated last day ?
you can use JQL as described by #Guillaume
however if you want to solve them and then delete them, usually it is best to run a bulk update and add a tag, because after the first bulk update to solve them the JQL will not be valid anymore.
This is assuming that you want to solve first and then delete obviously

Which jira tasks were assigned to me?

The requirement people assign me jira tasks to implement some issues or to fix bugs and when I have implemented the task, I assign the task to some tester.
Now I would like to find out, which tasks was assign to me in the current project / release to check the documentations. Any Idea how to do this? the "Assigned to Me" widget in jira shows me only the tasks, which are currently assigned to me.
Open Filter in JIRA. Create a filter with following query
assignee = currentUser() AND resolution = Unresolved order by updated DESC. It'll show you all the unresolved issues in JIRA, that's assigned to you. But make sure that you have logged into JIRA, with your credentials.

How can be created a filter in jira that contains the sum of time spent and time budget of the issues of all epics?

I´m trying to create a gadget for the Jira Dashboard that´s quite hard to accomplish.
I need to show a list of epics with time budget and the sum of time spent as columns.
The problem I´m facing is that the time logged is not made in the epics, but in the tasks or issues inside the epic (as I think it should be) and the column on "sum of time spent" is always empty.
This means, as I see it, that I have to be able to sum up the issues inside every epic and somehow show it in the empty column of the epic I need to see.
I created a filter and I´m calling it with the "filter results" jira dashboard gadget.
I tried with the Script Runner plugin and read the API it has, but still no idea how can that be done.
Is there any idea?
Thanks in advance for any advice.
I have looked for something exactly like this recently, and am surprised that JIRA doesn't have a way to do this out of the box.
Checkout Epic Sum Up. https://marketplace.atlassian.com/plugins/aptis.plugins.epicSumUp/cloud/overview It will solve the Time Budget question, but I don't know about a Time Logged solution.
See:
https://confluence.aptis.info/display/ESU/Time+Field
"How to search a Time Field by using JQL"
You might also find some useful features in the Tempo Addon.
https://tempoplugin.jira.com/wiki/display/TEMPO/Tempo%20Timesheets%20Documentation
Since you're looking to display something on a dashboard look under the Users Guide: Tempo gadgets area.
this works with the Plugin Timesheet
https://marketplace.atlassian.com/apps/294/timesheet-reports-and-gadgets?hosting=cloud&tab=overview
1) Add the Gadget to a JIRA-Dashboard
2) Edit the Gadget appropiately
but care that you
Group by: Epic Name
and choose for
Additional Fields: Original Estimate and Remaining Estimate
Consider to set Show Details: to No
This will look something like this:
(Remaining Estimate are the numbers Right from the Original Estimate-column )

What is the correct JQL query if I want to search all projects of a particular jira user?

I tried the JQL query below but it does not work.
project is EMPTY AND assignee = johndew
The output I want is a list of projects of the user.
Jira users are not directly connected to Projects. They are working / assigned to Jira issues, which belong to a Project.
It can not expressed in just a JQL. But when creating an issue filter with JQL like assignee = johndew and then save it, like 'issues-johndew'. Then open one of the Jira Dashboards and add the Gadget Issue Statstics. Fill in the field Project or Saved Filter the value of the filter issues-johndew. Fill in the field Static Type Project.
This should give an overview of where John Dew is working on.
In Jira this is the shown as below

Jira JQL that returns date of status change

I'm trying to use JQL to measure cycle times (the Control Chart has other issues), so I need to get the date that an issue changed status. I see that one can use the CHANGED keyword to filter issues that have changed status on certain dates, but I see no way to actually list the date of the change as a column.
Any ideas? How would you guys address this lack of visibility into cycle time data?
There is no simple solution available in JIRA at the moment. See the issue https://jira.atlassian.com/browse/JRA-12825 for the whole discussion. The argumentation of Atlassian is the following:
There exists a product Service Desk that implements the SLA feature expressed here.
There are reports and additional plugins available that give similar information to this. See the JIRA Suite Utilities which give you a UI for each issue to see the transition summary.
JQL (JIRA Query Language) was intended to select all issues that match a query, not to select special information to these issues. You have to use the configuration of the table, if it is included there as a field of the issue (which it is not).
In addition to the suggestions from mliebelt there is another at https://answers.atlassian.com/questions/128370/how-to-capture-date-of-state-change-in-jira. It requires JIRA Misc Workflow Extenstions and uses the "Copy value from field to field" function to capture the transition date in a custom field.
There is a plugin in Atlassian Marketplace called Time in Status just for that purpose. The plugin prepares a report on how much time each issue spent on each status or assignee.
Time in status is useless if need to count of Jiras that changed status on that day. Time in status widgets is useless for this

Resources