Hi Experts!
How can achive this through XSLT Mapping???
My Source XML file :
--<ROOT>
--<A>
<A1> </A1>
<A2> </A2>
</A>
--<A>
<A1> </A1>
<A2> </A2>
--<X>
<X1> </X1>
<X2> </X2>
</X>
--<X>
<X1> </X1>
<X2> </X2>
</X>
</A>
--<B>
<BB> </BB>
<BB> </BB>
--<B1>
<BB1> </BB1>
<BB1> </BB1>
</B1>
--<B2>
<BB2> </BB2>
<BB2> </BB2>
</B2>
--<B3>
<BB3> </BB3>
<BB3> </BB3>
</B3>
</B>
</ROOT>
My Target XML file should be like this :
--<ROOT
--<A>
<A1> </A1>
<A2> </A2>
</A>
--<A>
<A1> </A1>
<A2> </A2>
</A>
--<X>
<X1> </X1>
<X2> </X2>
</X>
--<X>
<X1> </X1>
<X2> </X2>
</X>
--<B>
<BB> </BB>
<BB> </BB>
</B>
--<B1>
<BB1> </BB1>
<BB1> </BB1>
</B1>
--<B2>
<BB2> </BB2>
<BB2> </BB2>
</B2>
--<B3>
<BB3> </BB3>
<BB3> </BB3>
</B3>
</ROOT>
So How can I write .Xsl file to achive this.
Help me to get the output quickly.
Suggestions and Tips Please!