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.
I have two custom fields Linked Fix version list and Linked project List as drop downs.
Linked Fix version list depends on project selected from Linked project list, I am able to get the versions in Linked Version List Custom Field but while creating the Issue I am getting the following error.
Invalid value '14930' passed for customfield 'Linked Fix Version List'. Allowed values are: , -1
My Code for Script Runner
import com.atlassian.jira.project.Project;
import com.atlassian.jira.project.version.Version;
def selver = getFieldByName("Linked Fix Version List");
def project = getFieldByName("Linked Project List").getValue() as Project;
Collection<Version> versions = new ArrayList<Version>()
if(project){
for(Version version :project.getVersions()){
if(version.isReleased()){
continue
}else{
versions.add(version)
}
}
}
selver.setLabel('Linked Fix Version List1')
selver.setFieldOptions(versions)
Help me in resolving this Issue
Thanks in Advance