create a new issue during a transition

Markus Post October 9, 2013

how can I create a new issue during a transition in another project and the project is pending on a user field value? e.g. user field = ABC, new issue will be created in project ABC

3 answers

1 accepted

0 votes
Answer accepted
Bharadwaj Jannu
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.
October 9, 2013

ComponentAccessor comAcc =new ComponentAccessor(); CustomFieldManager cfm = comAcc.getCustomFieldManager(); currentIssue.getCustomFieldValue(cfm.getCustomFieldObjectByName("user field")); IssueManager issueManager = comAcc.getIssueManager(); IssueFactory issueFactory = comAcc.getIssueFactory(); ProjectManager projManager = comAcc.getProjectManager(); JiraAuthenticationContext authContext = comAcc.getJiraAuthenticationContext(); MutableIssue issueObject = issueFactory.getIssue(); Project projObj = projManager.getProjectObjByKey("{user field i.e.project key}"); issueObject.setProjectId(projObj.getId()); issueObject.setReporterId(authContext.getLoggedInUser().getName()); issueObject.setSummary("[JIRA-generated] "+currentIssue.getSummary()); issueObject.setPriorityObject(currentIssue.getPriorityObject()); issueObject.setIssueTypeId(currentIssue.getIssueTypeObject().getId()); issueManager.updateIssue(authContext.getLoggedInUser(),issueObject,EventDispatchOption.ISSUE_UPDATED,true);

Markus Post October 15, 2013

I'll give it a try, many thanks for now.

1 vote
Christian Czaia _Decadis AG_
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.
October 9, 2013
0 votes
Bharadwaj Jannu
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.
October 9, 2013
Bharadwaj Jannu
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.
October 9, 2013

you create an issue by placing a condition.

see the code in my answer

Suggest an answer

Log in or Sign up to answer