You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Getting an error : the variable [issue] is undeclared
I am using this in a Post Function of a workflow
Server 8.3.2 with ScriptRunner 5.6.6.1-jira8
import com.atlassian.jira.component.pico.ComponentManager
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.CustomFieldManager
import com.atlassian.jira.issue.fields.CustomField
import com.atlassian.jira.issue.MutableIssue;
import com.atlassian.jira.bc.issue.IssueService;
import com.atlassian.jira.issue.Issue;
import com.atlassian.jira.issue.IssueManager;
def projectName = issue.project.name;
I believe that the console is just a java interpreter and is not "aware" that the issue object will be defined at execution time. That is why it is showing a warning that it is not declared. Also your code is fine, it works in groovy (which is meant to have more simple syntax).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It would be better something like issue.getProjectObject().getName() but your code should work. I don't see an error, and I have just put your code in a postfunction and it works. Nevertheless I have experienced some kind of hangs with scriptrunner script console from time to time, so I would try to log out and log back in, closing the browser and even clearing the browser's cache.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
String org1_val = issue.getCustomFieldValue(cf_org1) I have the same error but was unable to solve the issue. any leads @Juan Ramón Alonso @Jon Kocen
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.