I have a custom field called "MARKET" (Drop down field) in that field we have values like Australia, Hong Kong & Brazil. I have groups for Australia, Hong Kong & Brazil and in that groups we have different users in each group.
For Example:- Now if the users select Australia in the market field then only users in the Australia group should only be able to see those issues and the other group users should not be able to see those issues
2. is there any any option restricting the users in groups to create the tickets based on same above requirement like if any one select Australia then the users in the Australia group should only be able to create the ticket.
Please any one help me out.....
Hello,
You would need to create your own custom validator. There are multiple apps available: Power Scripts, ScriptRunner, Groovioli, MyGroovy.
If you want to use the Power Scripts app, you validator would look like this:
if (#{Market Field Name} == "Australia" and usersInGroups({"australia-group"})) {
return true;
}
return false;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I believe, that it is not possible without a script.
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.