Hi there,
Specs:
NAV 6.0 R2
RTC build 32775
Windows 7
In the Sales Order page (42), we have a Control Action that goes to the Sales Comment Sheet page (67).
When we click this action, sometimes only the Sales Comment Sheet page is opened. Eveything's fine!
But very often, on top of the page, Notepad will be opened.
Strange is that in the Sales Order List, the comments are always opened in the page.
The code that we use to open the page, on both the list as the card page.:
LocRecSalesCommentLine.SETRANGE("Document Type","Document Type");
LocRecSalesCommentLine.SETRANGE("No.","No.");
LocPgeSalesCommentSheet.EDITABLE(BooEditableAction);
LocPgeSalesCommentSheet.SETTABLEVIEW(LocRecSalesCommentLine);
LocPgeSalesCommentSheet.RUNMODAL();
CLEAR(LocPgeSalesCommentSheet);
Does anyone have a clue what is going wrong?