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.
...
IF FIND('+') THEN
IF ToMorrow("FA Posting Date",Year365Days) > LocalDate THEN
LocalDate := ToMorrow("FA Posting Date",Year365Days);
GetLastEntryDates(FANo,DeprBookCode,EntryDates);
FOR i := 1 TO 4 DO
// Delete the following lines.
IF EntryDates[i] > LocalDate THEN
LocalDate := EntryDates[i];
// End of the deleted lines.
END;
EXIT(LocalDate);
...
...
IF FIND('+') THEN
IF ToMorrow("FA Posting Date",Year365Days) > LocalDate THEN
LocalDate := ToMorrow("FA Posting Date",Year365Days);
GetLastEntryDates(FANo,DeprBookCode,EntryDates);
FOR i := 1 TO 4 DO
// Add the following lines.
IF EntryDates[i] <>0D THEN
IF ToMorrow(EntryDates[i],Year365Days) > LocalDate THEN
LocalDate := ToMorrow(EntryDates[i],Year365Days);
// End of the added lines.
END;
EXIT(LocalDate);
...