Problem with eMail-logging

KappeKappe Member Posts: 64
Hello

I got the NAS running and setting up the eMail logging.
But after some hours the service crashes with the Event ID 109
and the message:

'Ja' is not an option.

The existing options are:

No, Yes

Is this a language problem?

Kappe
___________________________________________

Kappe

Comments

  • DenSterDenSter Member Posts: 8,307
    This looks like a multi-language problem. The message looks like a regular Navision error message, so you should be able to debug the problem. It's strange though, because NAS should only use one language.
  • kinekine Member Posts: 12,562
    If you are using startup parameters, please use 0/1 instead No/Yes (Nein/Ja). If it is in code, you are somewhere using for example this (OptionField have options Yes,No with Captions Ja,Nein):
      SETRANGE(OptionField,'Ja');
    

    correct form
      SETRANGE(OptionField,OptionField::"Yes");
    
    Kamil Sacek
    MVP - Dynamics NAV
    My BLOG
    NAVERTICA a.s.
  • GoMaDGoMaD Member Posts: 313
    A quick and dirty solution:

    Clear the CaptionML property of the field that causes the error.

    (I know this isn't correct! Don't bug me with it!)
    Now, let's see what we can see.
    ...
    Everybody on-line.
    ...
    Looking good!
Sign In or Register to comment.