Forums

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

How to copy custom field in Sub-task to custom field in Parent when create Sub-task

Hisamitsu Koga
Contributor
August 8, 2016

I want to copy custom field in Sub-task to same name's custom field in Parent when create Sub-Task automatically as post function by ScriptRunner. How can I define script exactly? Please provide me with the exact script code.

 

1 answer

0 votes
Tarun Sapra
Community Champion
August 9, 2016

In the script runner post-function options there is built-in script to "create sub-task", in that post-function there is a section called "Additional issue Actions", in that section you can add a script like

def cf = customFieldManager.getCustomFieldObjects(sourceIssue).find {it.name == 'Name of CF'}
issue.setCustomFieldValue(cf, sourceIssue.getCustomFieldValue(cf))

Here sourceIssue means the parent issue and issue is the sub-task, you just have to add the correct name of custom field and replace "Name of CF" and that should work as this is exact script code

Suggest an answer

Log in or Sign up to answer