I have created new scripted field ( single user pickup) only from a single group.
But when i preview the field it shows "Anonymous" and it doesnt filter the users from the group and also in the screen user pickup option doesn't get pulled up. I have attached the screenshot for reference.
Below is the script
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.ModifiedValue
import com.atlassian.jira.issue.util.DefaultIssueChangeHolder
def groupManager = ComponentAccessor.getGroupManager()
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def group = groupManager.getGroup("ITOPS - Devops Team")
Check the searcher for this field and make sure it is set to 'User Picker & Group Searcher'. Go to Administration -> Issues -> Custom Fields, find your field, click on the "Cog" icon to the right and select 'Edit' in the popped up menu.
However if I understood what you are trying to achieve correcly, then It won't work. You want to create a User Picker field, and you want to resctrict its select options to the users of a certain group only, yes? Well, unfortunately it doesn't work that way. Scripted fields are read-only, and code behind them should return a certain value which will be displayed in the field.
Please let me know how can we achieve this functionality. Can we add the script in post function to filter the users ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You don't need scripting to do it. If your Jira version is 6.2 or later then user filtering for single select user pickers is part of standard funtionality. All you need to do is create a User-Picker (single choice) custom field and then set which groups it will be limited to in its configuration. More details in this documentation.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.