Trouble creating Biztalk map

Home Page Forums BizTalk 2004 – BizTalk 2010 Trouble creating Biztalk map

Viewing 1 reply thread
  • Author
    Posts
    • #15533

      Can anyone please suggest how to create a Biztalk map to convert xml file from the format below to that given below:

      FROM

      <root>
      <Order id=\”1000\”>
      <item partNumber=\”ABCDEF\”/>
      </Order>
      <Order id=\”1000\”>
      <item partNumber=\”GHIJKL\”/>
      </Order>
      </root>

      TO

      <root>
      <Order id=\”1000\”>
      <items>
      <item partNumber=\”ABCDEF\”/>
      <item partNumber=\”GHIJKL\”/>
      </items>
      </Order>
      </root>

    • #15534

      You will need to use custom Xslt.
      There are a number of ways of doing this in Xslt, the most efficient is using Muenchian grouping.

      [url]http://www.jenitennison.com/xslt/grouping/muenchian.html[/url]

Viewing 1 reply thread
  • The forum ‘BizTalk 2004 – BizTalk 2010’ is closed to new topics and replies.