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.
...
FromFile := FileName
END;
OnPostReport=BEGIN
IF ISSERVICETIER AND ExportedLines THEN
// Delete the following line.
DOWNLOAD(FromFile,Text13401,FileName,Text13402,FileName);
// End of the deleted line.
IF NOT ExportedLines THEN
ERROR(Text13403)
ELSE
MESSAGE(Text13400,FileName);
...
...
FromFile := FileName
END;
OnPostReport=BEGIN
IF ISSERVICETIER AND ExportedLines THEN
// Add the following lines.
//DOWNLOAD(FromFile,Text13401,FileName,Text13402,FileName);
RBMgt.DownloadToFile(FromFile,FileName);
// End of the added lines.
IF NOT ExportedLines THEN
ERROR(Text13403)
ELSE
MESSAGE(Text13400,FileName);
...