Find out jira creation date of latest issue

jashir October 4, 2016

How to check the JIRA creation date of the latest issue in the project if i am not a member of all the project but i am JIRA administrator.

1 answer

0 votes
Walter Buggenhout
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
October 4, 2016

Hi Jashir,

You can create a JQL query that looks something like this:

Project = <my project> ORDER BY created DESC

This will give you a list of all issues in the project, having the last created issue on top. In issue navigator, display the created column in your search results and you have your answer.

If you want to take it a step further, you can even save your filter and use it as an issue source for a Filter Results gadget on a Dashboard.

jashir October 4, 2016

No issues were found to match your search

Walter Buggenhout
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
October 4, 2016

Oh, I see. Your problem actually is not so much about how to retrieve the most recent issue and its create date, but about the permissions.

In order to find issues in a certain project, you need to have access to it. More specifically the 'Browse Project' permission.

As JIRA Administrator, you are usually the one who is consulted when there is a problem with the configuration of a project or your JIRA instance at larger scale. You should also be in charge of the governance of your instance. So there should be nothing wrong with having access to the projects, without you requiring to actually participate.

Although it is best practice to configure your permission schemes using Project Roles, we often make one exception by granting the jira-administrators group Administer Project / Browse Project permission through the permission schemes of our projects.

For more information on permissions, check out https://confluence.atlassian.com/jira062/managing-project-permissions-588582096.html.

As soon as you have granted yourself the right permissions, the JQL should return results.

Suggest an answer

Log in or Sign up to answer