Is there a JQL search capability that enables me to find all Issues created by users in Service Management whose email address have a specific domain? All help much appreciated. Thanks.
Hello @Kel Hill
You would need advanced search options, for this JQL you would need ScriptRunner
issueFunction in issueFieldMatch("project = TEST ", "reporter", "@domain")
You can do without subquery, you can use any subquery you desire
issueFunction in issueFieldMatch(" ", "reporter", "@hellofresh")
https://scriptrunner.adaptavist.com/5.5.8/jira/jql-functions.html
BR, Olga
Are you sure it works in cloud though?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Daniel
Good question tested in cloud, this works, the project is not null is used to match all projects.
issueFunction in issueFieldMatch("project is not null", "reporter", "gmail")
Use only the "bolded" part @gmail.com
BR, Olga
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.