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 the FA Posting Overview page (5662) as follows:
...
{ 77 ;1 ;Action ; CaptionML=ENU=&Show Matrix;
Promoted=Yes;
PromotedIsBig=Yes;
Image=ShowMatrix;
PromotedCategory=Process;
OnAction=VAR
MatrixForm@1097 : Form 9277;
BEGIN
CLEAR(MatrixForm);
MatrixForm.Load(MATRIX_CaptionSet,MatrixRecords,NoOfColumns,DateFilter,RoundingFactor,
PeriodType,AmountType);
MatrixForm.RUNMODAL;
END;
}
...
...
{ 77 ;1 ;Action ;
CaptionML=ENU=&Show Matrix;
Promoted=Yes;
PromotedIsBig=Yes;
Image=ShowMatrix;
PromotedCategory=Process;
OnAction=VAR
MatrixForm@1097 : Form 9277;
BEGIN
CLEAR(MatrixForm);
// Add the following line.
DateFilter := GETFILTER("FA Posting Date Filter");
MatrixForm.Load(MATRIX_CaptionSet,MatrixRecords,NoOfColumns,DateFilter,RoundingFactor,
PeriodType,AmountType);
MatrixForm.RUNMODAL;
END;
}
...