Announcement

Collapse
No announcement yet.

XML.InsertXML

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • XML.InsertXML

    Hi,

    I have a XML file that represents a data set that does not contain any table records, it looks like the below:

    <?xml version="1.0" standalone="yes"?>
    <TimeTrakDS>
    </TimeTrakDS>

    I need to be able to add a table record but not sure how to go about it. I think that I should be able to do it with XML.InsertXML. Need the file to end up looking like the below sample:

    <?xml version="1.0" standalone="yes"?>
    <TimeTrakDS>
    <TimeTraks>
    <TimeTrakCode>TT1</TimeTrakCode>
    <TimeTrakVersion>2013</TimeTrakVersion>
    </TimeTraks>
    </TimeTrakDS>

    Can anybody help me out on this?

    Thanks
Working...
X