发布版本号 Build No. – 45243
发布日期 Release Date – Mar, 2016
下载链接
更新项:
ID
|
Title
|
377345
|
Error occurs when you create Treeview structures.
|
377577
|
A security filter does not allow you to create new records.
|
377849
|
Extended text lines are not deleted when you delete the related sales line on the Sales Order page.
|
377874
|
Table column width is incorrect after the Word to PDF conversion.
|
377911
|
There are no permissions in the Cronus database for objects in the 12xxx range.
|
377949
|
Debugger crashes when more than one NST is running.
|
377950
|
User personalization stops saving data.
|
377964
|
Pressing the Arrow key deletes a whole line.
|
377989
|
"Microsoft.Dynamics.Nav.Client has stopped working. The user must close or debug the program" error message when you add a new link on the Registered Absences page.
|
377992
|
The Web client crashes.
|
378012
|
TreeView on subpages does not work if Dynamically Visible is not set as OnOpen (VISIBLE = variableSetToFalse).
|
378030
|
MaxNoOfXMLRecords-Setting is ignored by the Dynamics NAV client.
|
378033
|
Error occurs when you try to evaluate a record ID.
|
378036
|
OnValidate subscriptions are not called if there is no code on the OnValidate trigger.
|
378040
|
The Intellisense menu only displays the record’s fields for the FromValue when SETRANGE is used.
|
378059
|
REPORT.SAVEAS overwrites the last error text and GETLASTERRORTEXT leads to a misleading error text.
|
378068
|
iOS 9.2.1 has rendering issues in Dynamics NAV comparing to other OS and versions.
|
378074
|
Option strings are not displayed by using Intellisencse unless the field name is fully qualified through the Rec global variable.
|
378103
|
Error occurs when you send pages to Word and then save it.
|
378110
|
PerrsonalizationStore.xml file is purged after an unsuccessful connection.
|
378144
|
The client crashes when you create a note on a page that is opened through page.runmodal.
|
378152
|
Configuration-defined actions on the ribbon loose their caption when you customize them.
|
378154
|
SaveFilter throws an error when an object is saved.
|
378161
|
CU 3 and later CUs break custom Control Add-In functionality in the Web client.
|
378189
|
Normal user personalization could not be overridden if super user configuration changes.
|
378205
|
You cannot uninstall an extension with data archival if the primary key has sum index fields defined.
|
378210
|
The first parameter of the GET method is treated as a field instead of a record.
|
378288
|
Table field structure still has the AltSearchField property.
|
发布版本号 Build No. – 45244
发布日期 Release Date – Mar, 2016
下载链接
更新项:
ID
|
Title
|
377894
|
There are no permissions in the Cronus database for objects in the 12xxx range.
|
378052
|
REPORT.SAVEAS overwrites the last error text and GETLASTERRORTEXT leads to a misleading error text.
|
377942
|
User personalization stops saving data.
|
378013
|
TreeView on subpages does not work if Dynamically Visible is not set as OnOpen (VISIBLE = variableSetToFalse).
|
377976
|
"Microsoft.Dynamics.Nav.Client has stopped working. The user must close or debug the program" error message when you add a new link on the Registered Absences page.
|
378034
|
An error occurs when you try to evaluate a record ID.
|
378031
|
MaxNoOfXMLRecords-Setting is ignored by the client.
|
377600
|
The Flow value is incorrectly calculated.
|
377872
|
Table column width is incorrect after the Word to PDF conversion.
|
377599
|
A security filter does not allow you to create new records.
|
378107
|
PerrsonalizationStore.xml file is purged after an unsuccessful connection.
|
377939
|
The debugger crashes when more than one NST is running.
|
378212
|
An error occurs when you send pages to Word and then save it.
|
378150
|
SaveFilter throws an error when an object is saved.
|
377965
|
Pressing the Arrow key deletes a whole line.
|
378190
|
Normal user personalization could not be overridden if super user configuration changes.
|
378340
|
User personalizations are not saved and unavailable after the client is restarted.
|
发布版本号 Build No. – 45254
发布日期 Release Date – Mar, 2016
下载链接
更新项:
ID
|
Title
|
378032
|
An error occurs when you try to evaluate a record ID.
|
378262
|
The Print Preview window opens in the background.
|
377962
|
Pressing the Arrow key deletes a whole line.
|
362836
|
XmlPort.Run leaves a temporary file in the users temporary folder on the server when data export is completed.
|
378295
|
User personalizations are not saved and unavailable after the client is restarted.
|
发布版本号 Build No. – 45241
发布日期 Release Date – Mar, 2016
下载链接
更新项:
ID
|
Title
|
Functional area
|
Changed objects
|
378135
|
A VAT entry is missing when you post a payment with applying entries with payment discount deducted and full VAT.
|
Finance
|
COD 12
|
377927
|
The inventory valuation and unit costs printed in the Status report are incorrect.
|
Inventory
|
REP 706
|
378086
|
When you run the Calculate Inventory function on the Physical Inventory Journal page with the By Dimension option, a wrong dimension is suggested.
|
Inventory
|
REP 790
|
377846
|
If you post a credit memo with an item charge that is assigned to an earlier shipment, it is suggested incorrectly in the Intrastat journal.
|
VAT/Sales Tax/Intrastat
|
COD 22 REP 594
|
自NAV2015开始,NAV提供多租户环境,即一个app应用程序数据库,多个业务数据库环境。那么通常我们初始安装为单数据库(含应用程序/业务数据环境), 如何升级到多租户环境呢? 下面通过PowerShell命令一步一步完成。
- 停止NAV实例
Set-NAVServerInstance -ServerInstance ‘NAV’ -stop
- 输出当前系统的业务到NAVApp库
Export-NAVApplication -DatabaseServer localhost -DatabaseInstance SQL2K14 -DatabaseName NAV2016 -DestinationDatabaseName NAVApp
- 从当前数据库中移除Application
Remove-NAVApplication -DatabaseServer localhost -DatabaseInstance SQL2K14 -DatabaseName NAV2016 -Force
- 修改NAV实例的数据库为空
Set-NAVServerConfiguration -ServerInstance NAV -element appSettings -KeyName ‘DatabaseName’ -KeyValue ”
- 启动NAV
Set-NAVServerInstance -ServerInstance NAV -Start
- 为NAV加载NAVApp库
Mount-NAVApplication -ServerInstance NAV -DatabaseServer localhost\SQL2K14 -DatabaseName NAVApp
- 加载租户t1
Mount-NAVTenant -ServerInstance NAV -Id t1 -DatabaseServer localhost\SQL2K14 -DatabaseName NAV2016 -OverwriteTenantIdInDatabase
至此,多租户环境升级完毕,我们将可以使用 localhost:7046/NAV/t1访问租户t1.
近期评论