how to replace the root tag with the certain string in ABAP Mapping
just like
<?xml version="1.0" encoding="UTF-8"?>
<root>
<name>Lawrence</name>
</root>
into
<?xml version="1.0" encoding="UTF-8"?>
<myRootElement>
<name>Lawrence</name>
</myRootElement>
i don't want to implement it in message mapping
please give me the sample code
thanks in advance