Warning message

Hi,

We’ve upgraded NAV client to version W1 6.00 (6.00.29626).

Now, sometimes users are getting a warning message as per below - when they are on the Customer card.

4276.err.jpg

Can anyone please help?

Thanks,

Vinod

check all your modification. My guess some code somewhere is modifying the wrong record. Also on your customer card are you doing any modification to the customer comment line table?

Make the debugger active and to stop where the code is activating error. See where this code is and then let me know.

No changes have been done to the code. Also, this is not happening always. There are no modification codes running on Customer card to Comment line table.

Post a screen shot of where your debugger stop (before the error message appears)

This problem can occurs when the record is modified by 2 different instances of a record within the same DB transaction.

Sames DB Transaction >>

Step 1 : Customer1.MODIFY;

Step 2 : // Customer2.GET ( X) ; // you might need this in your code to fix your problem

Customer2.MODIFY; // that’s where the error typically occur because the Customer record has been modified in Step 1

<< Sames DB Transaction <<

Post a screen shot of where your debugger stop (before the error message appears)

This problem can occurs when the record is modified by 2 different instances of a record within the same DB transaction.

Sames DB Transaction >>

Step 1 : Customer1.MODIFY;

Step 2 : // Customer2.GET ( X) ; // you might need this in your code to fix your problem

Customer2.MODIFY; // that’s where the error typically occur because the Customer record has been modified in Step 1

<< Sames DB Transaction <<