Hi,
I'm trying to update a specific issue via SOAP:UpdateIssue method but I'm getting the following response :
com.atlassian.jira.rpc.exception.RemoteValidationException: Fields not valid for issue:
Errors: {customfield_12471=Epic with name 'WGZMIG-1' is not unique
I checked for duplicated values but I didn't find any. Could you please help me?
P.S: It's not applicable on all issues. I'm using GreenHopper 6.2.6.
Thanks,
Rosy
Hello Renjith,
I didn't find any duplication using this query.
Thank you,
Rosy
Can you additionally try if the there are duplicates in this query?
select stringvalue, count(*) count from customfieldvalue where customfield in (select id from customfield where cfname = 'Epic Name') group by stringvalue order by count asc;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey Tiago,
Thanks for your answer. However, I checked this KB before posting this problem. They suggested to upgrade GreenHopper to GreenHopper 6.2.2.2, or any latest version. My version is upgraded also, I checked for duplication using the suggested query:
SELECT
*
FROM
jira521.jiraissue
WHERE
issuetype = (
SELECT
ID
FROM
issuetype
WHERE
pname =
'Epic'
);
I didn't notice any duplication. What do you think?
Many thanks,
Rosy
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.