cancel
Showing results for 
Search instead for 
Did you mean: 

Dynamic Looping of node in target structure

Former Member
0 Kudos

In Graphical mapping ,I am using UDF, which is returning rows from 0 to N.

Following is my Target struct

<Product>

<A>

<B>

<Control> 0 to Unbound

<M>

<N>

Depeding on the result of UDF ,i need create multiple nodes of <Control> which is 0 to unbound st. Ex: If UDF return 3 rows

<Product>

<A>

<B>

<Control>

<M>

<N>

<Control>

<M>

<N>

<Control>

<M>

<N>

How to achieve this looping ?

Accepted Solutions (1)

Accepted Solutions (1)

Shabarish_Nair
Active Contributor
0 Kudos

map the output of the UDF to the product node. So the number of occurrences (based on values) generated by the UDF will create out as many nodes of the target

former_member200962
Active Contributor
0 Kudos
map the output of the UDF to the product node

I hope you mean to say the Control node (which needs to be repeated)

Answers (1)

Answers (1)

Former Member
0 Kudos

Thanks, Its CONTROL Node which needs to repeated.