Good day.
I am running NAV. 2009 SP1,Classic Client, the DB we are using is SQL 2005. I am trying to retrieve the Posted Sales Invoice that were created in our new upgraded NAV. 2009 from NAV. 5.0, but every time I do, the Client Freezes for about 3 to 5 minutes before it retrieves the record.
The strange thing is that when retrieving records that were invoiced and posted on our previous version (NAV. 5.0) none of them freezes.
Thanks
0
Comments
You can also activate code coverage to check that in which object it's taking time(that is shown in Coverage Ratio field).
It doesn't matter where i LookUp the Posted Invoices, it still hangs.
I tried the code coverage for both the Old and the New posted orders but the Coverage Ratio for both is the same.
When i debug the procedure the cursor stops on this trigger code on the FIND(Which):
Form - OnFindRecord(Which : Text[1024])
IF FIND(Which) THEN
EXIT(TRUE)
ELSE BEGIN
SETRANGE("No.");
EXIT(FIND(Which));
END;
If I replace the FIND(Which) with FIND('=') the speed improves but the Form gets disabled when the record is retrieved.
Import standard form and check it, is the problem still same?