我使用这些值创建自定义级联列表
TestCatA
- CatA_1
- CatA_2
TestCatB
- CatB_1
- CatB_2
创建自定义远程字段并使用
发出问题RemoteCustomFieldValue[] actionParams2 = new RemoteCustomFieldValue[]{
new RemoteCustomFieldValue("customfield_10012", null, new String[]{"TestCatA"}),
new RemoteCustomFieldValue("customfield_10012", "1", new String[]{"CatA_1"})};
issue.setCustomFieldValues(actionParams2);
但第二个值始终以
失败faultString: com.atlassian.jira.rpc.exception.RemoteValidationException: {customfield_10012=Value: 'CatA_1' is an invalid Option} : []
任何提示或工作样本?
答案 0 :(得分:0)
这从JIRA 4.3改为JIRA 4.4。它曾经使用值作为字符串,但现在使用我认为的ID。同样在Python JIRA CLI中,我必须使用customfield_10012:1作为子选项的名称。