Error "Sorry, we just update this page. Reopen it, and try again" in NAV 2018
hGarrido
Member Posts: 4
Hello everyone,
We upgrade a client to NAV 2018, and we have an error when the customer try to use dimensions. If the customer insert dimensions in sales quote recives the next error: "Sorry, we just update this page. Reopen it, and try again". I debug it and I can see that this error is in function ShowDocDim in table 36-SalesHeader. The error is on the MODIFY, but in SalesHeader table we don't have any code in OnModify function.
This NAV es 2018 CU0 and I try to find this crash, but I can't. I feel that if I upgrade to the last CU (in this moment, CU9), I'll continue getting the error.
Anyone can help me?
Best regards.
We upgrade a client to NAV 2018, and we have an error when the customer try to use dimensions. If the customer insert dimensions in sales quote recives the next error: "Sorry, we just update this page. Reopen it, and try again". I debug it and I can see that this error is in function ShowDocDim in table 36-SalesHeader. The error is on the MODIFY, but in SalesHeader table we don't have any code in OnModify function.
This NAV es 2018 CU0 and I try to find this crash, but I can't. I feel that if I upgrade to the last CU (in this moment, CU9), I'll continue getting the error.
Anyone can help me?
Best regards.
0
Answers
-
I'm getting the same error when I do an upgrade from NAV2013 to NAV2018, during the upgrade process.Roelof de Jonghttp://www.wye.com0
-
I'm also getting this error in an upgrade from NAV2015 to NAV2018 when upgrading the data.0
-
Hi,
I got the same error message and I managed to fix it.
It is a bug in NAV 2018, Microsoft is working on as it as far as I managed to find out.
I am not sure if it is the same issue in your case, but the problem is caused by existing error message during insert modify.
previous code that caused the error message
- snip ---
IF NOT RecordReference.INSERT(TRUE) THEN BEGIN
RecordReference.MODIFY(TRUE); // here it would stop and show the error
END;
---snip----
So I changed the code like this and it works.
---snip---
IF NOT RecordReference.INSERT(TRUE) THEN BEGIN
CLEAR(RecRef2);
RecRef2:= RecordReference;
CLEARLASTERROR; // this does nto do much, so you cna remove it
RecRef2.FINDFIRST; // This seems to resolve the issue
RecRef2.MODIFY(TRUE);
END;
---snip---
I hope this helps.
Thanks0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.7K Microsoft Dynamics NAV
- 18.8K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 329 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions

