I want to do a bulk update to a custom field for a set of approx 900 tickets in JIRA service desk (server).
I have two columns in my CSV - "Issue Key" and the custom field.
I attempted to import but it seems I must include "Summary". I put a value in this field for each ticket (just some random text) but this overwrote the summary for each of my tickets. In order to get this to work I have to export the tickets from JIRA into excel first, including the Summary, add the custom field values and then import, so the summary value being updated was the same as the value already on the ticket.
Is there a way of importing where I can have the summary field not updated?
I'm sure there is a simple way to do this but I couldn't seem to find it.
This is a known limitation and a suggestion has been logged about it in the support system:
https://jira.atlassian.com/browse/JRASERVER-69222.
As mentioned in one of the comments, the trick is to include an empty "Summary" column in your CSV and map it to the Summary field.
That way, the import will succeed, the Summary will remain unchanged on your issues but the other fields included in your CSV will get updated, giving the desired result.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
HI, Sorry but .... may be create script and update the fields using the REST API
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This actually does not work for me. I'm using Jira Cloud...
See screenshots below.
First I tried without mapping the summary. I'm warned the summary field is required. Ok, let's adding an empty summary field. See next screenshot.
I went back to the CSV file and added a new column called Empty Summary. Notice the Issue ID is also set. Also notice the other fields I'm mapping...
Upon running the validator, an error is thrown saying the Summary field can't be empty. What gives?
If I map the regular summary column (which has the original summary value from export), upon importing I get duplicate issues, even though I'm providing the issue-id and summary fields. The update is not happening. There must be another require or reason for this.
Any help would be appreciated.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just name the column "Empty Summary" in your CSV file "Summary", without the "empty" word in front and leave the column values empty. Did you try that?
That is the trick @François Dumas mentioned and you could try:
As mentioned in one of the comments, the trick is to include an empty "Summary" column in your CSV and map it to the Summary field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Elvis McNeelyin order to update existing issues, you must map the "Issue Key" field, not the "Issue Id" as you have done, otherwise Jira will attempt to create new issues (and the Summary cannot be empty on new issues, which is why you're getting that error).
The proof that Jira is trying to create new issues is the error message in your second screenshot which displays: "Issue can't be created due to error/s..."
So, to update existing issues:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If ju have a plugin called jira suite util or perhaps scriptrunner, this should be an eaay task.
then you should get something looking as below
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks for the feedback - but I want to try and accomplish this through the native JIRA CSV import. I want to understand if just not updating the "Summary" field during import is possible?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.