set parent custom field value

Louisa Pabst July 28, 2015

Hii,

how can I set a parent custom field value?

I've already tried the following code:

def cf = ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName("Single Select");
def value = ComponentAccessor.optionsManager.getOptions(cf.getRelevantConfig(issue))?.find { it.toString() == 'Value'};
issue.parentObject.setCustomFieldValue(cf, value);
issue.setCustomFieldValue(cf, value);

 The last code line does work, so the customfield value of the subtask customfield gets updated. Unfortunately, the customfield of the parent Issue does not get the new value!

 

Best regards,

Louisa

1 answer

0 votes
Betsy Walker {Appfire}
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.
July 29, 2015

Hi @Louisa Pabst,

If you want to avoid having to write code, you can also accomplish it using the Update on Transition for JIRA add-on, which supports using/setting system and custom fields from parent issues… including making the update conditional based on an expression or a JQL query.

This recipe shows how it is used to add a comment to a linked issue during a workflow transition, but the overall approach applies to your Use Case as well.

Louisa Pabst July 30, 2015

I don't really wanna use an extra add-on! But thanks for your response!

Suggest an answer

Log in or Sign up to answer