Options

Job Queue through NAV Webservice for mulitple Companies

13»

Comments

  • Options
    battoosaibattoosai Member Posts: 16
    Hi,

    It is now working. =D> Thanks to the post of pvar in this link viewtopic.php?f=32&t=31476&hilit=run+multiple+nas&start=45. I just set the Server = localhost in the Customsetttings.config.

    Thanks!
  • Options
    bobgally9bobgally9 Member Posts: 15
    Hi,

    Does any one got solution for this

    "Another user modified issue " in webservices.

    Regards
    Mouli.K
    Hope this Helps

    Thanks
    Mouli K
    www.moulikaku.com
  • Options
    bobgally9bobgally9 Member Posts: 15
    Hi,

    Does any one got solution for this

    "Another user modified issue " in webservices.

    Regards
    Mouli.K
    Hope this Helps

    Thanks
    Mouli K
    www.moulikaku.com
  • Options
    bobgally9bobgally9 Member Posts: 15
    ara3n wrote:
    I just tested it and I do get the error.

    Another user has modified the record for this Item after you retrieved it from the database.  Enter your changes again in the updated window, or start the interrupted activity again.  Identification fields and values:  No.='1000'
    

    From webservice.

    My test codeunit looked like this.
    Item.GET('1000');
    SLEEP(10000);
    
    Item.VALIDATE(Description,'Bicycle WS');
    Item.MODIFY;
    


    So while the WS was waiting I modified the description on the item with another client.



    Hi,

    Does any one got solution for this

    "Another user modified issue " in webservices.

    i'm facing the similar issue :(

    Regards
    Mouli.K
    Hope this Helps

    Thanks
    Mouli K
    www.moulikaku.com
  • Options
    ara3nara3n Member Posts: 9,255
    Change your code to.
    Item.GET('1000');
    SLEEP(10000);
    
    
    Item.GET('1000');
    Item.VALIDATE(Description,'Bicycle WS');
    Item.MODIFY;
    
    Ahmed Rashed Amini
    Independent Consultant/Developer


    blog: https://dynamicsuser.net/nav/b/ara3n
Sign In or Register to comment.