Options

Error 1262 in module 19.

dbdb Member Posts: 82
edited 2006-07-18 in Navision Financials
In dberror.txt file this describes:
ObjectStillRefered

Can anybody tell me that can it meen ?
This error issued using Cfront.

Comments

  • Options
    seanlseanl Member Posts: 14
    HI there

    Has anybody got an answer for this issue. I am getting this error on Navision 3.6 SQL version.
  • Options
    Timo_LässerTimo_Lässer Member Posts: 481
    Following informations I could find for the internal error 1262 in module 19:
    Errorcode: 1246446 (used by C/FRONT)
    Description: #Err_DB_ObjectStillRefered

    This error could occur e. g. if you try to open a database with more companies than your licence allow.

    Solution / Workaround:
    This error should be fixed with 3.01.A
    Another workaround could be to raise the object cache.
    Timo Lässer
    Microsoft Dynamics NAV Developer since 1997
    MSDynamics.de - German Microsoft Dynamics Community - member of [clip]
  • Options
    RademacherRademacher Member Posts: 1
    Just for the record – I had this error because I did not closed properly at the end.

    I just closed whit:
    cf.CloseCompany();
    cf.CloseDatabase();

    and forgot:
    cf.EWT();
    cf.FreeRec(recordRef);
    cf.CloseTable(tabelRef);

    now it works thit:
    cf.EWT();
    cf.FreeRec(recordRef);
    cf.CloseTable(tabelRef);
    cf.CloseCompany();
    cf.CloseDatabase();

    Hope it vil help somone somtime.

    Anders Rademacher
Sign In or Register to comment.