add row of data in each loop through xsl transformation
Hi All,
I have a scenario where in each iteration of the for loop i would get a collection of data. I then have to insert this data into the target using an xsl transformation. And the new data fetched under each iteration should go into the new row after the transformation..
it is like :-
for loop count from 1 to 10
{
get next db source_record
transform source_record to target_record($count)
count++
}
So at the end, i will have a final xml with all records at the target...