RE: Entry in Vendor Ledger Entries that is showing red
That is a nice one :-), we have also been wondering about such cases some time ago.
The style for this record is controlled by a code in OnAfterGetRecord of the page. In some fields, it refers to the style, described in the table itself. Here is this part:
IF Open THEN BEGIN
IF WORKDATE > "Due Date" THEN
EXIT('Unfavorable')
END ELSE
IF "Closed at Date" > "Due Date" THEN
EXIT('Attention');
EXIT('');
That is, if the Closed at Date is > then Due Date, then it will be marked with red.
Check at what date the credit memo is applied?