Language problem whxporting Analysis by Dimensions to Excel

jnielsenjnielsen Member Posts: 7
edited 2005-01-20 in Navision Attain
I'm having a strange problem when I try to export an Analysis by Dimensions to Excel. When I run the application (3.60) in English, there's no problem, but when I change the language to Danish, it fails in CU424, because a date calculation goes wrong. Apparently it expects the value '1W' for one week, but the danish code for Week is 'U'.
I can hardly believe that standard Navision functionality only works in English, so what could be the issue here?

Comments

  • fbfb Member Posts: 246
    In v3.60, codeunit 424 contains the following line:
    StartDate := CALCDATE('1W',StartDate);
    
    In v3.70, that line was corrected to the 'language neutral' form by placing brackets around the date expression:
    StartDate := CALCDATE('<1W>',StartDate);
    
Sign In or Register to comment.