|
|
|
| Hi
I need to create map for following input and output schema
<Input>
<Info>
<PropertyName>P1...
<PropertyValue>V1...
</Info>
<Info>
<PropertyName>P2...
<PropertyValue>V2...
</Info>
.....
and output format is
<Output>
<Code1>Value of property P1...
<Code2>Value of property P2...
What is best way to implement this?
Is table looping functoid helpful here?
Thanks
Vishy
| |
| Jan Eliasen 2005-10-26, 2:48 am |
| On 25 Oct 2005 08:51:40 -0700, "Vishy" <vishal.halbe@gmail.com> wrote:
>Hi
>
>I need to create map for following input and output schema
><Input>
> <Info>
> <PropertyName>P1...
> <PropertyValue>V1...
> </Info>
> <Info>
> <PropertyName>P2...
> <PropertyValue>V2...
> </Info>
>....
>
>and output format is
><Output>
> <Code1>Value of property P1...
> <Code2>Value of property P2...
>
>What is best way to implement this?
>Is table looping functoid helpful here?
Hi
If you need to create a runtime specific number of "CodeX"-elements,
then I'd go with some custom XSLT in a scripting functoid.
--
Jan Eliasen, representing himself and not the company he works for.
| |
|
| Thanks Jan
Ya I guess thats the only way as input is not typed info i need some
sort coding somewhere to parse it before it is mapped; i was wondering
can I use Table Looping functoid though?
Vishy
| |
|
|
|
|