Internal Error

roshandilrukroshandilruk Member Posts: 51
edited 2010-11-30 in Navision Attain
Hi All,

Any idea for this error,

Internal error 1247 in Module 9

If I search in net I get only this,
19 1247 #Err_DB_NewWTAMissing DB_Err(1247)

But I need to know why this happens and what's the solution, coz one user logs in and simply click on Contact list, then this error comes and navision log off.

Plz help

Rosh

Comments

  • ara3nara3n Member Posts: 9,256
    Have you tried to reinstall navision client?
    Ahmed Rashed Amini
    Independent Consultant/Developer


    blog: https://dynamicsuser.net/nav/b/ara3n
  • roshandilrukroshandilruk Member Posts: 51
    ara3n wrote:
    Have you tried to reinstall navision client?

    The user access server thru cytrix client, only one user having this problem, rest are fine.
  • ara3nara3n Member Posts: 9,256
    have you tried to delete their zup file. Also does the user have the same security has everybody else?
    Ahmed Rashed Amini
    Independent Consultant/Developer


    blog: https://dynamicsuser.net/nav/b/ara3n
  • roshandilrukroshandilruk Member Posts: 51
    ara3n wrote:
    have you tried to delete their zup file. Also does the user have the same security has everybody else?

    Yes the user has same rights as other users, I have only one ZUP file, thats in server, I dont think that a solution for this as all other users have no problem in this regards.
  • bbrownbbrown Member Posts: 3,268
    I have only one ZUP file

    Why?

    Even in a TS/Citrix environment, each user should have their own ZUP file. The ZUP file is stored as part of the user's profile.
    There are no bugs - only undocumented features.
  • ara3nara3n Member Posts: 9,256
    I agree the zup file should be in for 3.x versions of navision

    C:\Documents and Settings\[USERLOGIN}\application data\

    Older Clients had in one location. zup files shouldn't be shared accross users.
    Ahmed Rashed Amini
    Independent Consultant/Developer


    blog: https://dynamicsuser.net/nav/b/ara3n
  • bbrownbbrown Member Posts: 3,268
    The zupfile location (and name) can also be re-directed.
    There are no bugs - only undocumented features.
  • ara3nara3n Member Posts: 9,256
    Like this

    Once a shortcut has been created for a fin.exe file. Go to propertie of the short cut and add the following parameter id=fin41.zup.

    Here is an example on how to do it.
    C:\Navision\client4.1\fin.exe id=fin41.zup

    Create one unique zup for for every user.
    Ahmed Rashed Amini
    Independent Consultant/Developer


    blog: https://dynamicsuser.net/nav/b/ara3n
  • dbdb Member Posts: 82
    Err_DB_NewWTAMissing DB_Err - New Windows Theme Attribute is missing.
    This error means that Navision can't create window, windows attributes is demaged.
    I have found one situation that causing this:
    If we have codeunit that can rise Consistent error and codeunit is called by returning value (IF Codeunit.RUN(n) THEN ;) somewhere else, then this error was rised.

    Codeunit rising error:
    OBJECT Codeunit 90909 errrr
    {
      OBJECT-PROPERTIES
      {
        Date=07.04.18;
        Time=15:15:12;
        Modified=Yes;
        Version List=;
      }
      PROPERTIES
      {
        SingleInstance=Yes;
        OnRun=BEGIN
                IF running THEN consistErr()
                  ELSE BEGIN
                    running := TRUE;
                    IF CODEUNIT.RUN(90909)  THEN ;
                  END;
              END;
    
      }
      CODE
      {
        VAR
          r17@1000000001 : Record 17;
          running@1000000000 : Boolean;
    
        PROCEDURE consistErr@1000000000();
        BEGIN
          r17.CONSISTENT(FALSE);
        END;
    
        BEGIN
        END.
      }
    }
    
  • almhansenalmhansen Member Posts: 117
    We've received this error on a NAV2009 installation when a user is trying to print a Sales Invoice. We tried to find and correct the zup file issue suggested here, but we do not have a fin.exe. Is this because we are on NAV2009 (SP1)? Any other suggestions?
  • SavatageSavatage Member Posts: 7,142
    What do you have FinSql.exe?
  • almhansenalmhansen Member Posts: 117
    Here is my link:

    "C:\Program Files (x86)\Microsoft Dynamics NAV\60\RoleTailored Client\Microsoft.Dynamics.Nav.Client.exe"
  • ara3nara3n Member Posts: 9,256
    that is RTC not classic client. which one are you using?
    Ahmed Rashed Amini
    Independent Consultant/Developer


    blog: https://dynamicsuser.net/nav/b/ara3n
  • almhansenalmhansen Member Posts: 117
    The user that got this error is on the RTC.
Sign In or Register to comment.