Options

Opening/Reading files from local area network machine

zimworxcodezimworxcode Member Posts: 53
edited 2011-06-11 in NAV Three Tier
I would like to copy files/folders from a local network machine to the Server machine where the dynamiscs nav server is located can this be achieved in Dynamics NAV? if so how can this be done?

Comments

  • Options
    nav_rksaurabhnav_rksaurabh Member Posts: 11
    Rec.RESET;
    rec.SETRANGE(Path, 'c:\');
    IF Rec.FIND('-') THEN
    REPEAT
    COPY(Rec.path + rec.Name, 'c:\navision\local' + Rec.Name);
    UNTIL rec.NEXT = 0;
    Regards,
    rksaurabh
  • Options
    nav_rksaurabhnav_rksaurabh Member Posts: 11
    If you want to get the path of server then you can use the function
    CONTEXTURL
    Regards,
    rksaurabh
  • Options
    mohana_cse06mohana_cse06 Member Posts: 5,503
    I would like to copy files/folders from a local network machine to the Server machine where the dynamiscs nav server is located can this be achieved in Dynamics NAV? if so how can this be done?

    In Classic client or on RTC?
    IF RTC, you can use UPLOAD function
    Sends a file from a RoleTailored client to a Microsoft Dynamics NAV Service.
  • Options
    zimworxcodezimworxcode Member Posts: 53
    thank you for ur responses.
Sign In or Register to comment.