Suppose you want to take an element on the input side and make it two elements on the output side. The target has one element but a duplicate element is required.
INPUT
ImportantDate
ShipDate sDay=”1” sMonth=”10” sYear=”2009”
ImportantDate
OUTPUT
ActionDate
ScheduleDate day=”1” month=”10” year=”2009”
ScheduleDate day=”1” month=”10” year=”2009”
ActionDate
You can accomplish this by right clicking on the target element ScheduleDate and selecting Duplicate Node option from the popup menu. This will create the copy of the element ScheduleDate with the name ScheduleDate[1] just below the original element. You can map these two ScheduleDate element to corresponding single source element.
Note: [1] in the duplicate element signifies that it is the first duplicate of the actual element. You can create 50 duplicates of any target element.
Comments
0 comments
Article is closed for comments.