Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Trying to pull the option field from a cascading field and populate a people picker field

I'm new to scriptrunner but I'm trying to populate the Assignee with a name entered into a text box in a cascading field.

I found the script below on this site, but it's not working:

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.issue.customfields.impl.CascadingSelectCFType
import com.atlassian.jira.issue.customfields.option.Option
import com.atlassian.jira.issue.fields.CustomField
Issue issue = ComponentAccessor.getIssueManager().getIssueObject("Rig Manager");
CustomField customField = ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName("Cascade");
Map<String, Option> params = (HashMap<String,Option>) issue.getCustomFieldValue(customField)
if (params != null) {
    Option parent = params.get(CascadingSelectCFType.PARENT_KEY)
    Option child = params.get(CascadingSelectCFType.CHILD_KEY)
}

1 answer

0 votes
mogavenasan
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Jan 06, 2021

Hi @Rebecca Allen,

I'm answering this by using some of the code I wrote before and also there some joining multiple scripts - hence, it is not tested and might need some tweaking:

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.issue.customfields.option.Option
import com.atlassian.jira.issue.customfields.impl.CascadingSelectCFType
import org.apache.log4j.Level
import org.apache.log4j.Logger

String parentValue, childValue

def optionsManager = ComponentAccessor.getOptionsManager()
def issueManager = ComponentAccessor.getIssueManager()
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def cField = customFieldManager.getCustomFieldObject("customfield_<ID>")
def cFieldValue = issue.getCustomFieldValue(cField)

HashMap<String, Option> hashMapEntries = (HashMap<String, Option>) cFieldValue

if (hashMapEntries != null) {
    
Option parent = hashMapEntries.get(CascadingSelectCFType.PARENT_KEY)
    Option child = hashMapEntries.get(CascadingSelectCFType.CHILD_KEY)
    parentValue = parent.toString()
    childValue = child.toString()
}

def user = ComponentAccessor.userManager.getUserByName(childValue)
issue.setAssignee(user)

  • Provide the custom field ID at "customfield_<ID>".
  • This script assumes that the assignee value is from the child value of the cascading custom field.

I hope that this helps.

Thanks,
Moga 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events