Dear Team,
I am able to copy value to linked issuetypes by using JMWE plugin.
But, How can we copy a field value to it's linked subtasks.
Value should copy as follows:
Mainticket->linked issues->subtasks of linked issue.
You can use a Scripted (Groovy) post-function with the following script, where you will, of course, need to replace the link direction name (with what appears on the main ticket's issue links section), the field name and the field value:
issue.getLinkedIssues("linktype").each { linkedIssue ->
linkedIssue.setFieldValue("fieldName","A value")
linkedIssue.subTaskObjects.each { subtask ->
subtask.setFieldValue("fieldName","A value")
}
}
Hi Suresh,
you already asked this question on our helpdesk, to which we replied and are awaiting an answer from you. Once we iron out the details, we'll post the full solution here.
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.