Forums

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

Appending text to a text field in a linked issue

FH April 5, 2022

Hi everyone,

I have a clone of an issue. When transitioning the clone, a post function has to append a new text fragment to a text field in the original (linked) issue.

There are post functions from JMWE which do almost that, but none of those can append to text, they only append to multi-value fields.

Could someone give me an idea?

 

2 answers

1 accepted

1 vote
Answer accepted
David Fischer
Community Champion
April 5, 2022

Hi @FH 

you can use JMWE's Set Field of Related Issues post-function, using a Groovy template like this as the Value:

${relatedIssue.get("text field")}
Some text to append
David Fischer
Community Champion
April 5, 2022

And if you want to just append the value of the same custom field from the current issue to the value in linked issue, you can use this:

${relatedIssue.get("text field")}
${issue.get("text field")}
0 votes
FH April 6, 2022

Thank you!

Suggest an answer

Log in or Sign up to answer