Can someone guide me on how to write a XSLT1.0 to create the output as below? <csvImportSchema>
<payload>
<test>**COPY VALUE**</test>
<test2>2</test2>
<test3>3</test3>
<ean>1111111111</ean>
<productId/>
</payload>
</csvImportSchema>
to
<csvImportSchema>
<payload>
<test>COPY VALUE</test>
<test2>2</test2>
<test3>3</test3>
<ean>1111111111</ean>
<productId/>
**<copied>COPY VALUE</copied>**
</payload>
<csvImportSchema>