Hi JIRA community,
I am trying to set some TASKS as SUBTASKS for created stories. In my JIRA-Test env, SUBTASKS seem to indent (makes it easier to read), and more importantly are visible on the backlog. However in my JIRA-Prod env, SUBTASKS are embedded within stories, and are not viewable from the backlog. Do you know how we can change this?
JIRA TEST
jiraimage1.jpg
JIRA PROD
jiraimage2.jpgjiraimage3.jpg
Thanks,
Layo
Is that field a ranking type field?
No, its a rarely used customfield restricted to one project.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok, what type of field is it? This error looks like you've got more than one value for a single-select field. You might have to delete one.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you're right, it's a single-select field. I'll have a look into this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It means that two values for customfield with id 10402 have the same id.
If you use server version you can try to get doubled customfield values with this SQL:
Select customfieldvalue.ID , customfieldvalue.CUSTOMFIELD from customfieldvalue group by customfieldvalue.ID , customfieldvalue.CUSTOMFIELD having COUNT(customfieldvalue.ID) > 1
I got similar troubles when inserted values into custom field via SQL.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Exactly. Never change a JIRA database with SQL (unless you *fully* understand what you're doing. Which most people don't)
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.