---
title: "No such property error"
canonical: "https://support.appfire.com/space/SUPPORT/856359800/No%20such%20property%20error"
format: markdown
---
## \uD83E\uDD14 Problem

When migrating from the “Transition Related Postfunction” to the “Transition issues Post-function,” the JMWE Groovy Console returns the error message, “groovy.lang.MissingPropertyException: No such property”. In JMWE for Jira DC versions prior to 8.6.3, it is not possible to define the Target Issue in the Conditional Execution Groovy Console in the Transition Issues Post-function.

## \uD83C\uDF31 Solution

In the example below, the reference to relatedIssue throws an error.

```
return(relatedIssue.get("status")?.getStatusCategory() != "Done")
```

While conducting testing, define relatedIssue.

```
def relatedIssue = ComponentAccessor.issueManager.getIssueObject("DEMO-1")
return(relatedIssue.get("status")?.getStatusCategory() != "Done")
```

> ⚠️ After testing, remember to remove the line where relatedIssue is defined, or the Post-function will likely fail.

## \uD83D\uDCCE Related articles



> Macro (contentbylabel)