It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
Hello,
We have a project (something like service desk ticket) that has relatively high volume. We can archive the data into another JIRA instance only for this high volume project following the instructions
https://confluence.atlassian.com/display/JIRA062/Restoring+a+Project+from+Backup
However, some of the tickets are linked to other projects. Once I moved data to the archived instance, the issue links will not exist anymore. Is there a way to store (even in text) the linked issue IDs in another field? Like a scripted field? How do other companies deal with this situation? I believe the change history of the ticket still have the linked issue IDs but how can I extract the data in Navigator?
Thank you for your help,
Sara
I use changeHistoryManager in a script field to get the history. (Thanks to Script Runner)
import com.atlassian.jira.ComponentManager
import com.atlassian.jira.issue.history.ChangeItemBean
def componentManager = ComponentManager.getInstance()
def changeHistoryManager = componentManager.getChangeHistoryManager()
def ch = changeHistoryManager.getChangeItemsForField(issue, "Link")
if (ch) {
return ch as String
}
else {
return null
}
We had a set of similar requests in our practice. We do the following: create the text custom field, store value there using the script runner (the value highly depends on requirement). Then make the import of the project with that custom field, and then write a script that will convert the data at that field into proper value.
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreHey Atlassian Community! Today we are launching a bunch of customer stories about the amazing work teams, like Dropbox and Twilio, are doing with Jira. You can check out the stories here. The thi...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.