Jazz Forum Welcome to the Jazz Community Forum Connect and collaborate with IBM Engineering experts and users

RTC Plain Java API is throwing com.ibm.team.workitem.common.model.MultiStaleDataException: Stale Data

 Hi Team,


We are trying to resolve the workitem through RTC Plain Java API, but the code throws MultiStaleDataException. 
Please help us with the code snippet to refresh the workitem and resolve it (OR) What is the procedure to resolve this exception ? Please share the code snippet. 

Exception StackTrace:
com.ibm.team.workitem.common.model.MultiStaleDataException: Stale Data
at com.ibm.team.workitem.common.internal.util.Utils.checkSaveResult(Utils.java:270)
at com.ibm.team.workitem.client.internal.WorkItemWorkingCopyRegistry.saveWorkItems(WorkItemWorkingCopyRegistry.java:2331)
at com.ibm.team.workitem.client.internal.WorkItemWorkingCopyRegistry.saveAffected(WorkItemWorkingCopyRegistry.java:2213)
at com.ibm.team.workitem.client.internal.WorkItemWorkingCopyRegistry.save(WorkItemWorkingCopyRegistry.java:2096)
at com.ibm.team.workitem.client.internal.WorkItemWorkingCopyRegistry.save(WorkItemWorkingCopyRegistry.java:2057)

Following is code snippet throwing the exception:
 workflowOperation.run(workItem, null);

Thanks in advance.

0 votes



One answer

Permanent link

 I think the exception is being caused because the work item you are referencing has already been updated from a previous change and you are still referencing the old work item.
So let's say you are updating multiple attributes but each independently. The pseudo-code would be something like this ...

get work item handle
get working copy
edit attribute 1
save working copy

get fresh copy of work item
get working copy
edit attribute 2
save working copy

get fresh copy of work item
...

0 votes

Comments

 @Sudharshan M


How to get the fresh working copy of the workitem ?

 IWorkItem workItem = workItemClient.findWorkItemById(workItem1.getId(), IWorkItem.FULL_PROFILE, null);

is not working. Still throwing the same error. Thanks



Your answer

Register or log in to post your answer.

Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.

Search context
Follow this question

By Email: 

Once you sign in you will be able to subscribe for any updates here.

By RSS:

Answers
Answers and Comments
Question details
× 10,943
× 7,496
× 1,326

Question asked: May 29 '23, 12:35 a.m.

Question was seen: 820 times

Last updated: May 30 '23, 2:05 a.m.

Related questions
Confirmation Cancel Confirm