Hi,
I am working on a dcr in IWOV format e.g.
<record name="privacy_policy" type="content">
<item name="Generic_Page">
<value>
<item name="Id">
<value>51731</value>
</item>
<item name="AdTags">
<value>
<item name="BlockId"><value/></item>
<item name="BannerId"><value>00/15/15/25</value></item>
<item name="SkyscraperId"><value>00/15/15/30</value></item>
<item name="CustomTrackingTags"><value/></item>
</value>
</item>
</value>
</item>
</record>
I am using Teamsite:

CRNode to extract a certain value (say BannerId and SkyScarperId) inorder to convert them into another mapped value. I am able to perform that operation without any problem. The only issue that I am facing is that when I used the "set_inner_xml" function to convert the extracted value and write the resultant xml string, it converts the dcr xml from "IWOV" to "XML" format which does not remain compatible to the dct anymore. Here is the resultant xml:
<record name='privacy_policy' type='content'>
<Generic_Page>
<Id>51731</Id>
<AdTags>
<BlockId />
<BannerId>00/15/15/25/00</BannerId>
<SkyscraperId>00/15/15/30/00</SkyscraperId>
<CustomTrackingTags />
</AdTags>
</Generic_Page>
</record>
Is there any function available that will keep the dcr's iwov format intact?