-
during sycnhronization, i would like to be able to move some iterations without to remove the revisions sync setting. When a iteration is deleted, every Work items that reference the iteration in their revisions can not be synchronized ! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You would need to run two migrations. One with a query scoped for the work items that you do want to migrate history with
Correct, if the iteration for the migration does not exist then the work item cant be migrated. You would need to add a mapping in the Field Map for that Iteration. This would affect ALL work items in scope for that migration under that Iteration. |
Beta Was this translation helpful? Give feedback.
You would need to run two migrations. One with a query scoped for the work items that you do want to migrate history with
ReplayRevisions
set totrue
, and another scoped for the rest withReplayRevisions
set tofalse
.Correct, if the iteration for the migration does not exist then the work item cant be migrated. You would need to add a mapping in the Field Map for that Iteration. This would affect ALL work items in scope for that migration under th…