Red Customer Ledger Entries NAV2013

KWevickKWevick Member Posts: 103
In NAV2013, some customer entries are in red. It appears that the Red Bold are past due, although not all past dues are in red. We have some entries that are closed, which are also in red. I haven't been able to locate any documentation on this.
Thanks,

Answers

  • Luc_VanDyckLuc_VanDyck Member, Moderator, Administrator Posts: 3,633
    This color is handled by the function SetStyle in the Cust. Ledger Entry table:
    IF Open THEN BEGIN
      IF WORKDATE > "Due Date" THEN
        EXIT('Unfavorable')
    END ELSE
      IF "Closed at Date" > "Due Date" THEN
        EXIT('Attention');
    EXIT('');
    
    Knowing that 'Attention' is Red + Italic and 'Unfavorable' is Bold + Italic + Red, you can do the math ;-)
    No support using PM or e-mail - Please use this forum. BC TechDays 2024: 13 & 14 June 2024, Antwerp (Belgium)
  • KWevickKWevick Member Posts: 103
    Thank you so much.
Sign In or Register to comment.