external Updation

vijayanderson
vijayanderson Member Posts: 207
Hi Everyone,

I want to update the posted detail in external file other than table in Navision, Like csv format.. Is that possible.

Regards,
Vijay

Comments

  • DaveT
    DaveT Member Posts: 1,039
    Hi Vijay,

    You have a number of options e.g. dataports and Xmlports but I suspect that you want to write to a text file directly. If so use the simpliest method is

    MyFile.OPEN
    MyFile.WRITE

    where MyFile is a variable of type FILE. Lookup the commands in the help for syntax examples.
    Dave Treanor

    Dynamics Nav Add-ons
    http://www.simplydynamics.ie/Addons.html
  • matttrax
    matttrax Member Posts: 2,309
    Why not just update the table and then export the data when you need it in csv format?