I’m having a bit of trouble with a map I’m working on and wondering if anyone can shed some light on this.
I’ve got a source document where I need to take the data under a given node and map it to two or more nodes in the destination.
For example:
The source doc is:
<Header>
<Customer>ABC</Customer>
<Date>1/1/2005</Date>
<Details>
<Detail>
<Value1>A</Value>
<Value2>B</Value>
<Number>100</Number>
</Detail>
</Details>
</Header>
I need to end up with:
<Header>
<Customer>ABC</Customer>
<Date>1/1/2005</Date>
<Details>
<Detail>
<Value1>A</Value>
<Number>100</Number>
</Detail>
<Detail>
<Value>B</Value>
<Number>100</Number>
</Detail>
</Details>
</Header>
I just can’t seem to figure out how to get Biztalk to create 2 detail records from one.
Any help would be greatly appreciated.