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 install this hotfix, change the code in the Global Variables section in the Fixed Asset - Book Value 02 report (5606) as follows:
...
FA@1011 : Record 5600;
FAGenReport@1012 : Codeunit 5626;
BudgetDepreciation@1013 : Codeunit 5615;
DeprBookCode@1014 : Code[10];
NumberOfTypes@1015 : Integer;
// Delete the following lines.
FAFilter@1016 : Text[250];
MainHeadLineText@1017 : Text[50];
GroupHeadLineText@1018 : Text[50];
DeprBookText@1019 : Text[50];
GroupCodeName@1020 : Text[80];
GroupHeadLine@1021 : Text[50];
GroupTotals@1022 : ' ,FA Class,FA Subclass,FA Location,Main Asset,Global Dimension 1,Global Dimension 2,FA Posting Group';
HeadLineText@1023 : ARRAY [12] OF Text[30];
StartText@1024 : Text[30];
EndText@1025 : Text[30];
// End of the lines.
StartAmounts@1026 : ARRAY [7] OF Decimal;
NetChangeAmounts@1027 : ARRAY [7] OF Decimal;
DisposalAmounts@1028 : ARRAY [7] OF Decimal;
GroupStartAmounts@1029 : ARRAY [7] OF Decimal;
GroupNetChangeAmounts@1030 : ARRAY [7] OF Decimal;
...
...
FA@1011 : Record 5600;
FAGenReport@1012 : Codeunit 5626;
BudgetDepreciation@1013 : Codeunit 5615;
DeprBookCode@1014 : Code[10];
NumberOfTypes@1015 : Integer;
// Add the following lines.
FAFilter@1016 : Text;
MainHeadLineText@1017 : Text;
GroupHeadLineText@1018 : Text;
DeprBookText@1019 : Text;
GroupCodeName@1020 : Text;
GroupHeadLine@1021 : Text;
GroupTotals@1022 : ' ,FA Class,FA Subclass,FA Location,Main Asset,Global Dimension 1,Global Dimension 2,FA Posting Group';
HeadLineText@1023 : ARRAY [12] OF Text;
StartText@1024 : Text;
EndText@1025 : Text;
// End of the lines.
StartAmounts@1026 : ARRAY [7] OF Decimal;
NetChangeAmounts@1027 : ARRAY [7] OF Decimal;
DisposalAmounts@1028 : ARRAY [7] OF Decimal;
GroupStartAmounts@1029 : ARRAY [7] OF Decimal;
GroupNetChangeAmounts@1030 : ARRAY [7] OF Decimal;
...
...
StartingDate@1054 : Date;
EndingDate@1055 : Date;
PrintDetails@1056 : Boolean;
BudgetReport@1057 : Boolean;
Reclassify@1058 : Boolean;
// Delete the following line.
ReclassificationText@1059 : Text[30];
BeforeAmount@1060 : Decimal;
EndingAmount@1061 : Decimal;
AcquisitionDate@1062 : Date;
DisposalDate@1063 : Date;
DerogDeprBook@1120000 : Record 5611;
...
...
StartingDate@1054 : Date;
EndingDate@1055 : Date;
PrintDetails@1056 : Boolean;
BudgetReport@1057 : Boolean;
Reclassify@1058 : Boolean;
// Add the following line.
ReclassificationText@1059 : Text;
BeforeAmount@1060 : Decimal;
EndingAmount@1061 : Decimal;
AcquisitionDate@1062 : Date;
DisposalDate@1063 : Date;
DerogDeprBook@1120000 : Record 5611;
...
...
EndingAmount@1061 : Decimal;
AcquisitionDate@1062 : Date;
DisposalDate@1063 : Date;
DerogDeprBook@1120000 : Record 5611;
FADeprBook2@1120001 : Record 5612;
// Delete the following lines.
DeprBookInfo@1120002 : ARRAY [5] OF Text[30];
DerogDeprBookInfo@1120003 : ARRAY [5] OF Text[30];
// End of the lines.
PrintFASetup@1120004 : Boolean;
HasDerogatorySetup@1120005 : Boolean;
...
...
EndingAmount@1061 : Decimal;
AcquisitionDate@1062 : Date;
DisposalDate@1063 : Date;
DerogDeprBook@1120000 : Record 5611;
FADeprBook2@1120001 : Record 5612;
// Add the following lines.
DeprBookInfo@1120002 : ARRAY [5] OF Text;
DerogDeprBookInfo@1120003 : ARRAY [5] OF Text;
// End of the lines.
PrintFASetup@1120004 : Boolean;
HasDerogatorySetup@1120005 : Boolean;
...
You must have Microsoft Dynamics NAV 2013 installed to apply this hotfix.