I've upgraded a 6.0 database to 6.0 SP1 and I'm getting an error when trying to print from the RTC, "Table 2000000039 is not available and cannot be opened.". Most of the objects are still at 6.0 but I have imported the 2000000XX and 9900XXXX tables and codeunits to 6.0 SP1. I've updated the xp_ndo.dll on the SQL server to SP1 as well. I've compiled all the objects without error.
0
Comments
Jerome Cader
The only placed it's accessed from standard C/AL is the FindPrinter trigger in codeunit 1.
TVision Technology Ltd
Dynamics West
http://www.dynamicswest.com
I did install the demo database on another server, with all tiers on there, and was able to print without this issue.
I have re-compiled all of my objects on two different servers but I think something is missing since I get the error. The table is not in the demo database either but obviously it is not looking for it I guess.
Should I export codeunit 1 from the demo DB and import it to my production DB?
IF ISSERVICETIER THEN BEGIN
PageSetUpOptions;
EXIT;
END;
IF NOT MoreInfo THEN
UseSKU := FALSE;
RequestOptionsForm.UseSKU.ENABLED(MoreInfo);
Moving this into the IF ISSERVICETIER statement amazingly gives no compile time warning and no run time error.
IF ISSERVICETIER THEN BEGIN
PageSetUpOptions;
EXIT;
END ELSE
RequestOptionsForm.UseSKU.ENABLED(MoreInfo);
IF NOT MoreInfo THEN
UseSKU := FALSE;
So how many MORE of these hidden technicalities have been built into SP1???
Dynamics West
http://www.dynamicswest.com
In cases where functionality has been disabled in 2009, it allows you to place your new A/L code inside the IF SERVICETIER block - and then leave the old implementation in the ELSE block - ensuring that the classic client works as before.
Jens Møller-Pedersen [MSFT]
This posting is provided 'AS IS' with no warranties, and confers no rights.
- No charts and no import save for one at a time
- No style sheets for Pages and when you import the Form style sheets to Pages the RTC gives errors
- Print page gives a "no style sheet" error regardless of importing style sheets as above
Dynamics West
http://www.dynamicswest.com
Another oddity I have noticed is that in saving a modified Report and NOT checking the compile box, if there is a duplicate DataSetFieldName you are forced to correct the error before saving. Is this not contrary the idea of saving a uncompiled version?
Dynamics West
http://www.dynamicswest.com