I need to export some data from my FMP7 database. It needs to be in an XML format so I can upload it to a web based data base(my E-Commerce web Site)
The only data I need is the Product ID, and the on hand count. The XML need to look like this:
<BVC2004>
<Products>
<Product>
<ID>99-1V</ID>
<InventoryAvailableQty>0</InventoryAvailableQty>
</Product>
</Products>
</BVC2004>
The only data is the <id>= my produnt part number and <InventoryAvailableQty> = my on hand count.
I will need to export many records at once.
Thanks,
cfunn