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.
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};
}
Thank you but we do not have the PowerScripts app. So I am looking for another workaround still.
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.