Problem in setting the values to a cascading select custom field using SOAP API

Bargavi Veeraraghavan July 4, 2012

I have a cascading selecct custom field like

parent1

child1

child 2

parent 2

child 3

child 4

RemoteCustomFieldValue customField=new RemoteCustomFieldValue("customfield_10010",null,new String[]{"parent1"});
RemoteCustomFieldValue customField1=new RemoteCustomFieldValue("customfield_10010",1,new String[]{"child1"});

remoteCustomArray[0]=customField;

remoteCustomArray[1]=customField1;

issue.setCustomFieldValues(remoteCustomArray);

and i am getting an exception,

com.atlassian.jira.rpc.exception.RemoteValidationException: {customfield_10010=The option 'parent1' is an invalid parent option} : []

1 answer

1 accepted

0 votes
Answer accepted
Jobin Kuruvilla [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 4, 2012

Which version of JIRA? Try giving the option ID instead of value and see if it helps.

Bargavi Veeraraghavan July 15, 2012

@jobin

Hi, i tried by giving the option Id for the parent select list. But I have no idea how to get the Id for the child select list box.

Bargavi Veeraraghavan July 15, 2012

The version is Jira 4.2 and i am using SOAP API.

Suggest an answer

Log in or Sign up to answer