Scriptrunner listener variable [ issue ] not declared

BrianB December 21, 2017

Trying to populate a date customfield from another date customfield on CustomFieldUpdated Event. Copied some of this code from other posts. I am getting variable [ issue ] not declared error.

import com.atlassian.jira.issue.Issue
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.event.issue.field.CustomFieldUpdatedEvent
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.CustomFieldManager

//def issue = event.issue
CustomFieldManager customFieldManager = ComponentAccessor.getCustomFieldManager()

issue.setCustomFieldValue(
customFieldManager.getCustomFieldObjectByName("Audit Original Testing Due Date")
, customFieldManager.getCustomFieldObjectByName("Audit Testing Due Date"))

2 answers

0 votes
BrianB December 21, 2017

Tried this earlier. No errors on the inline script editor, but the other field also does not get updated. Code below:

 

import com.atlassian.jira.issue.Issue
import com.atlassian.jira.issue.ModifiedValue
import com.atlassian.jira.issue.util.DefaultIssueChangeHolder
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.CustomFieldManager

def issue = event.issue as Issue
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def tgtField = customFieldManager.getCustomFieldObjects(event.issue).find {it.name == "Audit Original Testing Due Date"}
def changeHolder = new DefaultIssueChangeHolder()
tgtField.updateValue(null, issue, new ModifiedValue(issue.getCustomFieldValue(tgtField), customFieldManager.getCustomFieldObjectByName("Audit Testing Due Date")),changeHolder)

 

There are no errors in the log

Mikael Sandberg
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
December 21, 2017

Have you tried getting the target field by using 

def tgtField = customFieldManager.getCustomFieldObjectByName("Audit Original Testing Due Date")
BrianB January 2, 2018

Thanks for the suggestion. Just tried this. No errors in log, but the code has not been called by the listener for CustomFieldUpdated Event

Pradeep A June 30, 2021

Hi when I try with event.issue as Issue I'm getting static type checking variable event undeclared.

0 votes
Mikael Sandberg
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
December 21, 2017

Replace //def issue = event.issue with 

def issue = event.issue as Issue

BrianB December 21, 2017

Sorry, forgot to mention I tried that earlier. The error I get with "def issue = event.issue as Issue" is "Cannot find matching method"method error.png

Mikael Sandberg
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
December 21, 2017

You cannot use setCustomFieldValue when running it as a listener. In a listener you need to use updateValue, like this:

textCf2.updateValue(null, issue, new ModifiedValue(issue.getCustomFieldValue(textCf2), myval),changeHolder)
Mikael Sandberg
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
December 21, 2017

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events