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.
Comments
Has anybody got an answer for this issue. I am getting this error on Navision 3.6 SQL version.
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.
Microsoft Dynamics NAV Developer since 1997
MSDynamics.de - German Microsoft Dynamics Community - member of [clip]
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