How to move work item to other project area using java client API
2 answers
By opening the Copy/Move Work item Wizard in the Eclipse client and using the Plugin Spy (SHIFT+ALT+F1) on the dialog window you can find and open the wizard class com.ibm.team.workitem.rcp.ui.internal.wizards.CopyToProjectAreaWizard
You can look at the code how they do it. I doubt there is a special API. You have to find the source and target attributes and create a value mapping in any case, because the UUID's and ID's of referenced items are almost certainly different in both project areas in most of the cases.
You can look at the code how they do it. I doubt there is a special API. You have to find the source and target attributes and create a value mapping in any case, because the UUID's and ID's of referenced items are almost certainly different in both project areas in most of the cases.
Comments
Hi Ralph,
I was surfing on google and jazz.net to find If I can get anything to move work item from project area to another.
I did not find client Java API to move work item but I found server API to move work item.
Exact code is given in https://jazz.net/forum/questions/53755/move-workitem-from-a-project-area-to-another this link
I did it myself and work item is moved to specified project area, Some changes in code needs to be done however.
I was surfing on google and jazz.net to find If I can get anything to move work item from project area to another.
I did not find client Java API to move work item but I found server API to move work item.
Exact code is given in https://jazz.net/forum/questions/53755/move-workitem-from-a-project-area-to-another this link
I did it myself and work item is moved to specified project area, Some changes in code needs to be done however.
Comments
showing 5 of 7
show 2 more comments