This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

DEVELOPERS FORUM - There is no tag <Item> in response.

Prasad90 - Tuesday, May 14, 2013 8:41 AM:

When I try to update already locked Part using "update" action, it gives me error string as:

There is no tag <Item> in response.

My Query is:

<Item type="Part" action="update" where="id='18B0976F908B4D0C86514495A02D9147'" >

          <effective_date>2012-10-06T12:00:00</effective_date>

          <description>this is some long description </description>

</Item>

When I write a query to update the description property only, it allows me to update the part and create the version of part without any error.

How can I update any property of part?

What is the cause of this error?

Please help.

P.S.: I am using fresh OOTB database provided by aras, without any customization.

 



Prasad90 - Thursday, May 16, 2013 6:18 AM:

When I removed the "where" attribute from the Item tag, it worked perfectly.

I wrote following query:

<Item type="Part" action="update" id="18B0976F908B4D0C86514495A02D9147" >

          <effective_date>2012-10-06T12:00:00</effective_date>

          <description>this is some long description </description>

</Item>

Cheers,

Prasad