Another user has modified the record....

navuser1navuser1 Member Posts: 1,329
Hi All,

Using Nav 5.0 SP1 Native.

At the time of entering/selecting the Supply From in Navision Form Order Planning, get Message such as
Another user has modified the record for the Requition Line ....
................
Has any one got this msg ??
Now or Never

Comments

  • SogSog Member Posts: 1,023
    If you are the only user, contact your dealer, probably some validation that commits a value when retrieving the record and then runs some checks on it, thus modifying the record after you've retrieved it. After that the form should be updated (aka retrieving the records) but that piece of code is probably overlooked. (a similar topic about this problem is on this page btw)
    |Pressing F1 is so much faster than opening your browser|
    |To-Increase|
  • navuser1navuser1 Member Posts: 1,329
    Sog wrote:
    If you are the only user, contact your dealer, probably some validation that commits a value when retrieving the record and then runs some checks on it, thus modifying the record after you've retrieved it. After that the form should be updated (aka retrieving the records) but that piece of code is probably overlooked. (a similar topic about this problem is on this page btw)


    I have got error mgs from Nav From ID 5522
    Form - OnModifyRecord() : Boolean
    
    ReqLine := Rec;
    ReqLine.MODIFY(TRUE);
    
    Now or Never
  • SogSog Member Posts: 1,023
    Could you open the object designer and tell us what the value is of the column version list for form 5522?
    and if the modified column is TRUE or FALSE.
    |Pressing F1 is so much faster than opening your browser|
    |To-Increase|
  • navuser1navuser1 Member Posts: 1,329
    Sog wrote:
    Could you open the object designer and tell us what the value is of the column version list for form 5522?
    and if the modified column is TRUE or FALSE.

    column version : NAVW15.00.01
    modified : No
    Now or Never
  • SogSog Member Posts: 1,023
    You could add after the code
    currForm.UPDATE(False);
    
    |Pressing F1 is so much faster than opening your browser|
    |To-Increase|
  • navuser1navuser1 Member Posts: 1,329
    Sog wrote:
    You could add after the code
    currForm.UPDATE(False);
    


    already tri this..
    Got the same Message and than the Screen is closed.


    You can face this problem in the fresh Cronus Db also.
    But You can not in Nav2009.
    [for some Codechanges in Table 246]

    I hv tested in Nav 5.0 SP1 with same changes and it's working fine.

    Suggest me if I'm wrong.
    Now or Never
  • DenSterDenSter Member Posts: 8,304
    navuser1 wrote:
    You can face this problem in the fresh Cronus Db also.
    But You can not in Nav2009.
    Standard Cronus US does not have that code in that form trigger. I think you are on the right track though, if the code change that was put in place for NAV2009 for your localization made the problem go away then that's a good approach to solve the issue. Make sure though that you don't copy over the NAV2009 specific keywords (ISSERVICETIER won't work in anything but NAV2009)
Sign In or Register to comment.