To implement this hotfix, you must have a developer license.
You do not have to have rights to the data stores unless you have to perform data repair.
To resolve this problem, change the code in Properties in the Intrastat - Make Declaration report (593) as follows:
...
Window.UPDATE(1,STRSUBSTNO(Text1100001,FileName));
END;
OnAfterGetRecord=BEGIN
// Delete the following line.
IF LineCounter > 1000 THEN BEGIN
// End of the deleted line.
LineCounter := 0;
IntraFile.CLOSE;
CLEAR(IntraFile);
ToFile := Text1100006;
DOWNLOAD(FileName,Text004,'',Text1100005,ToFile);
...
...
Window.UPDATE(1,STRSUBSTNO(Text1100001,FileName));
END;
OnAfterGetRecord=BEGIN
// Add the following line.
IF LineCounter >= 1000 THEN BEGIN
// End of the added line.
LineCounter := 0;
IntraFile.CLOSE;
CLEAR(IntraFile);
ToFile := Text1100006;
DOWNLOAD(FileName,Text004,'',Text1100005,ToFile);
...