Forums

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

[Solved] Table field in JIRA

Pangeel Shubha June 24, 2019

Here's my requirement:

I have an issue which has 5 tasks under it (one for each team).

Each team enters data into 6 custom fields in each of the tasks.

When each of the task is transitioned to DONE, I want the fields from each of the tasks to be populated in the main issue. Considering there are 5 tasks , each with 6 fields.. I prefer if the fields can be shown in a TABULAR FORM in the main issue.

Is there some workaround to achieve this. 

I tried the Table Custom Field for JIRA add-on. But it does not have an option to bring data from linked issues. 

Any input would be greatly appreciated. Thanks.

 

1 answer

0 votes
Alexey Matveev
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.
June 24, 2019

Hello,

You would need an app like Power Scripts, ScriptRunner or Automation for Jira.

If you you want to use the Power Scripts app, then you could create a post function for the Done transition with a code like this:

string [] keys = linkedIssues(key,"Blocks");

for (string k in keys) {

   %k%.#{Field Name to Copy} = #{Field Name to Copy};

}
Pangeel Shubha June 25, 2019

Thank you but we do not have the PowerScripts app. So I am looking for another workaround still.

Suggest an answer

Log in or Sign up to answer