• If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Announcement

Collapse
No announcement yet.

[SOLVED] Download xml format

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

  • [SOLVED] Download xml format

    I just wondering....
    Download Pf to xml format in valence framwork...

    Thx

  • #2
    You could try vvOut_execSQLtoSS...

    Code:
    stmt='select * from pf';
    vvOut.download='Y';
    vvOut.file='pf.xml'; // ('pf.xls' is more conventional for this procedure) 
    vvOut_execSQLtoSS(stmt);
    The downloaded file is in Excel XML format. You could tweak the procedure to make it a more generic XML format if you needed to.

    Comment


    • #3
      Ok..
      Thx for the clue...
      i will try it

      Comment

      Working...
      X