hi guys!
i have following source structure:
- item (0..n)
- - subitem1 (1)
- - subitem2 (1)
- - ...
Although subitem1 can occur n times (depending on item's occurence), it can contain only one of 2 values (X or Y).
My target struct is
- nodeA (0..n)
and I want it to be 2 times in the target document with source subitem1 distinct value..
so:
- nodeA (value X)
- nodeA (value Y)
Any ideas, how to achieve this?
Thanx, O.