Hi guys,
I do need your lights for a filter on JIRA.
Would you please help me to build one that will allow me to have the list of tickets that I monitor, but that I have not opened ?
cheers
rani
I think the following is what you're looking for:
watcher = currentUser() AND reporter != currentUser()
That will also show tickets assigned to you, so you may want to add 'AND assignee != currentUser()'
This will also show resolved / closed tickets, so again you may want to amend.
Hope that helps
Regards, Liam
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Raniero FABRIS ,
I think you'd want something like this:
reporter != currentUser() AND watcher = currentUser()
CurrentUser() takes your well.. current user. and this filter will allow you to see all issues where you are watcher but where you are not reporter.
You could use your own name as a value instead of currentUser() but this makes it more generic
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.
Great, also like @Liam Green said if you need more filtering assignee and status might be some took look at.
Especially Status not in ("Closed","Resolved") and others you don't need to see.
Otherwise the list will continue to grow of course.
Feel free to mark the question as answer accepted too so people know it's resolved ;-)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Fahad.
But I still don't know how I can get only the ones that I observe / monitor.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Raniero FABRIS can you please clarify more what exactly you want to see in the report?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i would like to get the list of tickets that I monitor (watch), and that have been opened by other users (i.e. not me).
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.
reporter != Your name
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Recommended Learning For You
Level up your skills with Atlassian learning
Learning Path
Get started with Jira Service Management
These short, self-paced courses will help you get up and running in Jira Service Management in just 90 minutes.
Learning Path
Adopt ITSM practices with Jira Service Management
Use this path to build your IT Service Management knowledge and earn an Atlassian certification.
Setting Up ITSM Projects in Jira Service Management
This training series helps you get started in Jira Service Management quickly with the new ITSM project template.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.