| Anunay 2004-02-08, 9:35 pm |
| Hi Olav,
Are you working on Commerce server, catalog xml
mapping ? Well even I'm have facing the same isssue. Let
me know if you find any solution to this problem ? My
email id is anunay77@hotmail.com.
Thanks,
Anunay
>-----Original Message-----
>I need to make a map to transform this Xml:
>
><Categories>
> <CatLevel1 name="Backup">
> <CatLevel2 name="Internal"/>
> <catLevel2 name="External"/>
> </CatLevel1>
> <CatLevel1 name="CPU">
> <CatLevel2 name="Socket A">
> <CatLevel2 name="Socket 478">
> </CatLevel1>
></Categories>
>
>to
>
><Categories>
> <Category name="Backup">
> </Category>
> <Category name="Internal">
> <ParentCategory name="Backup">
> </Category>
> <Category name="Internal">
> <ParentCategory name="External">
> </Category>
> <Category name="CPU">
> </Category>
> <Category name="Socket A">
> <ParentCategory name="CPU">
> </Category>
> <Category name="Socket 478">
> <ParentCategory name="CPU">
> </Category>
></Categories>
>
>Is this possible? Does anyone have any hints on how to do
this? I have tried
>to do this with two looping functioids, but output is not
quite as it should
>be.
>
>Olav
>
>
>.
>
|