I have 4 main type of issues. assume it is "third party arrangement" and "third party process".
relationship of this issue types are:1 to many.
Therefor it can be has many "third party process" for a "third party arrangement".
there are several third party processes defined in the system. it is defined as different third party process types.
I want to filter "third party arrangement" type issues that dont have linked specific type of third party processes .
My Query is:
project=SNGOMT AND type=third party service arrangement AND NOT issueFunction in linkedIssuesOf(project=SNGOMT AND OutSourcing Process Type="MAS Annual Monitor")
My query getting error.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Apsara Dissanayake
Where you have:
('outsource Process Type = MAS Annual Monitoring')
...you need to have:
("'outsource Process Type' = 'MAS Annual Monitoring'")
Multi-word field names and multi-word values need to be within quotation marks. And the entire subquery also needs to be within quotation marks. I have used double-quotes to surround the subquery, and single-quotes to surround the field name and the value.
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.