Error in Windows.Update

Vineeth.RVineeth.R Member Posts: 121
Dear Friends,

When i run Fianancial Management - Analysis by dimension - Analysis Vie List and click Update button i am getting an error message saying "Overflow in calculation of 10000*219904." . this error comes in one of the coding

Window.UPDATE(3,ROUND(10000* EntryNo/WinLastEntryNo,1)); CodeUnit -410(function-UpdateWindowcounter(entryNo))

Please advise how to solve this issue.
Thanks and Regards
Vineeth.R

Comments

  • garakgarak Member Posts: 3,263
    Try
    EntryNo / WinLastEntryNo * 10000
    

    The problem is the 10000 * at the begin. An integer can max. be 2147483647

    Regards
    Do you make it right, it works too!
  • Vineeth.RVineeth.R Member Posts: 121
    Many thanks Garak it worked...
    Thanks and Regards
    Vineeth.R
Sign In or Register to comment.