Formatting outputed file from a database?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to format an outputed XML file from a Form, when the file is outputed
it displays the table name. Id like to instead change the table name to a
different name.

Example of Data
<AUX_PO_NO>BARB0001</AUX_PO_NO>
<PO_HDR_DAT>2007-05-23T00:00:00</PO_HDR_DAT>
<PO_HDR_ORD_BY>BARBARA</PO_HDR_ORD_BY>
<PO_HDR_SHIP_VIA>TRUCK</PO_HDR_SHIP_VIA>
<PO_HDR_SPEC_TERMS>SPECIAL TERMS</PO_HDR_SPEC_TERMS>

Example of Formatted Data
<purchaseOrder>BARB0001</purchaseOrder>
<requestedDate>2007-05-23T00:00:00</requestedDate>
<orderedBy>BARBARA</orderedBy>
<shippingMethod>TRUCK</shippingMethod>
<billingTerms>SPECIAL TERMS</billingTerms>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top