Filter to pick Project Manager or Business Case owner

Kevin Seery September 21, 2016

Hi,

I would like to display for the current long on user, all their Project Information issue they are the Project Manager or Business Case Owner.

Project Manager and Business Case Owner are custom fields, users list type.

The following JQL does not work?

issuetype = "Project Information" AND status = Done AND "Project Manager" in (currentUser()) OR  "Business Case Owner" in (currentUser()) 

Thanks

Kevin

2 answers

1 accepted

0 votes
Answer accepted
RPandyaram
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.
September 21, 2016

Hi Kevin,

 

It should work with the same syntax , it worked for me :

issuetype = "IT Help" AND status = Closed AND "Request Viewers" in( currentUser()) OR Audience in (currentUser())

May be "user custom field" type has to be revisited whether it is a user picker or a group picker .

0 votes
Kevin Seery September 21, 2016

Hi,

Thanks for your help this confirmed this could be done. This help me work out I needed ( ) around the both current user bits:

 issuetype = "IT Help" AND status = Closed AND ("Request Viewers" in( currentUser()) OR Audience in (currentUser())

Then the filter pick up issue were the current user is request viewer or audience

Many Thanks

Kevin

Suggest an answer

Log in or Sign up to answer