Forums

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

How can I define Issue ID and Parent ID before CSV import procedure?

Fedor Trutsko
October 13, 2016

This question is in reference to Atlassian Documentation: Importing data from CSV

How can I define Issue ID and Parent ID before CSV import procedure to avoid cases with duplicating of issues? 

 

I mean case when you are trying to upload issue with Issue Id which already exists in JIRA.

 

Thank you.

3 answers

1 accepted

0 votes
Answer accepted
S
Contributor
April 8, 2014

Hi Lyn,

You can use javascript for the purpose.

AJS.toInit(function(){

var field= document.getElementById('customfield_xxxxx');

var workflowSubmit=document.getElementById('issue-workflow-transition-submit');

field.disabled=true;

workflowSubmit.onclick=function() {

field.disabled=false;

}

});

0 votes
LynF
September 16, 2014

We didn't actually implement this, as I couldn't get the approval from the internal owner of JIRA.  So I am not sure if would have worked or not.   I marked it as answered (from memory) as we are relying on transitions and JIRA not showing in View fields that do not have values.

Thanks for the help though

0 votes
B. Normann P. Nielsen
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 Champions.
September 16, 2014

Hi Lyn,

 

Did this actually work - as it is marked as an Answer? And how did You implement it..

 

BR,

 

Normann

Suggest an answer

Log in or Sign up to answer