Export XML file with child element

Export XML file with child element

Hi,

I would like to export the data in Zoho Creator to XML.

However, there is a child element in the XML, the XML look like this:

<?xml version="1.0"?>
-<Batch xsi:noNamespaceSchemaLocation="http://www.google.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Version="1.2" TradeId="3333">
 -<Order TradersExternalReference="4456">
  -<ShippingInformation>
   <FirstName>John</FirstName>
   <Address>road 25</Address>
   <Country_ISO2>US</Country_ISO2>
  </ShippingInformation>
  -<Products>
   <Product Quantity="6" ProductId="15"/>
   <Product Quantity="3" ProductId="35"/>
   <Product Quantity="8" ProductId="59"/>
  </Products>
 </Order>
</Batch>

I search and found some posts from Stephen Rhyne about the XML, however, I am not sure I am in right direction. Can anyone help on this? Any workaround? Thank you.