09-23-04 02:56 AM
This can be achieved by using a scripting functoid of the type "XSLT Call
Template".
1) Pass Quantity as the Parameter.
2) Output <Element></Element>.
3) Decrement Quantity.
4) Make recursive call to the same Template using decremented Quantity, till
Quantity becomes 1.
HTH
Regards
Dev
"Luca" <prollo@libero.it> wrote in message
news:3d9f225e.0409160237.6e3c2927@posting.google.com...
> hi,
> from a mapper i have a number value in a child element and i want to
> generate more element how the number value.
> Like this ex:
>
> <root>
> <Quantity>3</Quantity>
> </root>
>
> Transform Mapper
> <Transform>
> <element></element>
> <element></element>
> <element></element>
>
> </Transform>
> It's possible? how?
[ Post a follow-up to this message ]
|