Hello everyone,
I am trying to build a query that fetch tickets from a list or project and another list of projects but only with a specific component:
project in (HU17, C360, CISRE, CCSO, EE17, EE18, PEL, PEL18) AND (project in (MBR, MFIN) AND component = Hybris)
This example doesn't work. Can someone guide me or tell me if it is possible to make such a query?
Thanks!
Gabriel
Hi Gabriel
project in (HU17, C360, CISRE, CCSO, EE17, EE18, PEL, PEL18) AND (project in (MBR, MFIN) AND component = Hybris)
should be
project in (HU17, C360, CISRE, CCSO, EE17, EE18, PEL, PEL18) or (project in (MBR, MFIN) AND component = Hybris)
you need to use "OR" between the list of projects and the second query (projects + component)
Cheers
Kurt
Hi Kurt!
Thanks for your help. It worked :)
Regards,
Gabriel
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.