Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Tracking of manually moved SR from Incident project

chandni
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
November 18, 2020

We have JSD setup  mainly for incident,SR and CR project. Sometimes, end users raise an issue in different project due to lack of knowledge about the respective application.

For example, user raise an issue in incident but it actually is an issue of SR project. So the query is that how to track those incident which has been manually moved in SR project by technician later on.  Requirement is to pull this report at the end of the month from JIRA. Please guide us for  what possible ways are there to achieve this. 

Thanks and Regards,

Chandni Patel

1 answer

0 votes
mogavenasan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 4, 2021

Hi @chandni,

If you have JQL Tricks Plugin installed on your Jira instance, then you can use JQL:

issue in movedIssues()

There are a few different apps on the Atlassian Marketplace that help you with this.

If paying/installing third-party apps is not an option for you - you can also query this information directly from the Jira database:

SELECT j.* FROM jiraissue j, changegroup g, changeitem i
where j.id = g.issueid
and g.id = i.groupid
and i.field = 'Project'
and i.oldstring = '<previous project name>'
and i.newstring = '<new project name>';

Thanks,
Moga

Suggest an answer

Log in or Sign up to answer