I am cloning a service desk ticket to Jira ticket by using a post function but facing issue while cloning one field. Below is the code :
import com.atlassian.jira.issue.CustomFieldManager
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.fields.CustomField
import com.atlassian.jira.issue.MutableIssue CustomFieldManager
customFieldManager = ComponentAccessor.getCustomFieldManager()
CustomField cf = customFieldManager.getCustomFieldObject(11100)
CustomField cf1 = customFieldManager.getCustomFieldObject(11101)
issue.summary = sourceIssue.getCustomFieldValue(cf).toString() + " : " + sourceIssue.getSummary()
issue.reporter = sourceIssue.getReporter()
issue.participants = sourceIssue.getCustomFieldValue(cf1)
issue.assignee = null
Ids : Request participants --- 11101
Trying to clone this field to participants but not working. If i will remove the lines
CustomField cf1 = customFieldManager.getCustomFieldObject(11101) issue.participants = sourceIssue.getCustomFieldValue(cf1)
from the above script then it will work but will not populate the participant fields. I wanted to clone the ticket but want to copy the values of "Request Participants" --> "Participants"
Hey again! See the answer that I gave you here:
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.