setStatusId

SenthilKumar Masanam May 2, 2016

This question is in reference to Atlassian Documentation: Configuring Workflow

Ask your question here...

1 answer

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 2, 2016

There's no question here - what are you looking for?

Manjunatha K R August 16, 2016

Hi Nic,

I tried to use the getStatusId() and setStatusId() functions to change the EPIC status from To Do to In Progress. But it's not working / issueInputParameters1 is blank.

 

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.Issue
import com.opensymphony.workflow.InvalidInputException
 
def issue = issue as Issue
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def issueService = ComponentAccessor.getIssueService()
def epicLinkCf = customFieldManager.getCustomFieldObjectByName("Epic Link")
def epicLink = issue.getCustomFieldValue(epicLinkCf) as Issue

def issueInputParameters1 = issueService.newIssueInputParameters().getStatusId()

log.debug (issueInputParameters1)

if (issueInputParameters1 == 'To Do') {
log.debug ('EPIC Status in in To Do state')
def issueInputParameters2 = issueService.newIssueInputParameters().setStatusId('In Progress')
}

Manjunatha K R August 16, 2016
issueInputParameters1 is blank ...

log.debug (issueInputParameters1)

2016-08-17 11:42:10,604 DEBUG [workflow.ScriptWorkflowFunction]: 
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
August 16, 2016

Do not try to set a status directly.

You need to move the issue through the workflow to get it to the right status.  The only time setStatusId can be used is by the workflow transitions and by an issue import creating issues.

See https://developer.atlassian.com/jiradev/jira-platform/guides/issues/guide-performing-issue-operations for how to change status properly.

Suggest an answer

Log in or Sign up to answer