|
Home > Archive > BizTalk Server General > March 2005 > BizTalk Mapping - Elements to Record
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
BizTalk Mapping - Elements to Record
|
|
|
| Hi,
I have an input Xml file as below
<Input>
<EveningPhone>4537869876</EveningPhone>
<EveningExt>234</EveningExt>
<DayPhone>3457587654</DayPhone>
<DayExt>123</DayExt>
<WorkPhone>9087587654</WorkPhone>
</Input>
and I need to convert it into the following format using Biztalk Map
<Output>
<Telephone desc="Evening" extn="234">4537869876</Telephone>
<Telephone desc="Day" extn="123">3457587654</Telephone>
<Telephone desc="Work">9087587654</Telephone>
</Output>
I tried using "LogicalExistence" functoids along with Value mapping but
always Iam able to produce only one Telephone element and not three
Any thoughts
Raj
| |
| Andy Wu 2005-03-27, 8:47 pm |
| It is unclear about the structure of your input. But you should take a look
at the generated XSLT to see what's going on.
|
|
|
|
|