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.
...
WITH FALedgEntry DO BEGIN
SetFAFilter(FALedgEntry,FANo,DeprBookCode,TRUE);
SETFILTER("FA Posting Date",'%1..',FiscalYearBegin);
SETRANGE("FA Posting Type","FA Posting Type"::Depreciation);
SETRANGE("Part of Book Value",TRUE);
CALCSUMS(Amount);
LocalAmount := Amount;
CalcEntryAmounts(FANo,DeprBookCode,FiscalYearBegin,0D,EntryAmounts);
FOR i := 1 TO 4 DO
IF GetPartOfCalculation(2,i - 1,DeprBookCode) THEN
...
...
WITH FALedgEntry DO BEGIN
SetFAFilter(FALedgEntry,FANo,DeprBookCode,TRUE);
SETFILTER("FA Posting Date",'%1..',FiscalYearBegin);
SETRANGE("FA Posting Type","FA Posting Type"::Depreciation);
SETRANGE("Part of Book Value",TRUE);
// Add the following line.
SETRANGE("Reclassification Entry",FALSE);
CALCSUMS(Amount);
LocalAmount := Amount;
CalcEntryAmounts(FANo,DeprBookCode,FiscalYearBegin,0D,EntryAmounts);
FOR i := 1 TO 4 DO
IF GetPartOfCalculation(2,i - 1,DeprBookCode) THEN
...