You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Project name is New
Sub project name is 33.0 Newgen Thethis Titan process
I want to fetch all tickets which are created under this sub project. I tried below query and got error
project = NEW AND Subproject = 33.0 Newgen Thethis Titan process
Error:
Error in the JQL Query: Expecting either 'OR' or 'AND' but got 'Newgen'. (line 1, character 65)
Hello @Manali Shah
Welcome to community!
Jira do not have the concept of Sub project. Is that a custom field in your scenario?
If yes, try
project = NEW AND Subproject = "33.0 Newgen Thethis Titan process"
Hi @Manali Shah, welcome to the Atlassian Community!
Perhaps you are thinking about a particular workflow or issue type associated to your project?
If "33.0 Newgen Thethis Titan process" is a workflow, you can find out which issue types are mapped to this workflow by going to the workflow scheme associated to your project, You could then amend your JQL to search to:
"project = NEW AND type = "issue_type_name"
or if there are multiple issue types using this workflow:
"project = NEW AND type in ("issue_type_name_1", "issue_type_name_2")
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.