症状
在 Microsoft Dynamics GP 2013 中导航主页或区域页时,可能会收到以下错误:
值不能为 null。
参数名称:titleValue
原因
Microsoft已将此问题确定为 Microsoft Dynamics GP 2013 的未决问题。 Service Pack 1 修复了此问题。
解决方法
下载并安装适用于 Microsoft Dynamics GP 2013 的 Service Pack 1。客户https://mbs.microsoft.com/customersource/downloads/servicepacks/MDGP2013_PatchReleases合作伙伴https://mbs.microsoft.com/partnersource/downloads/servicepack/MDGP2013_PatchReleases如果当前仅Microsoft Dynamics GP 2013 且无法立即安装 Service Pack 1,请参阅以下步骤获取解决方法。1. 让所有用户退出 Dynamics GP 2013 Microsoft。2. 创建系统数据库的 SQL 备份。 如果已从以前的版本升级,则系统数据库为 DYNAMICS。3. 如果已遇到上述错误,请在 SQL Server Management Studio中运行以下脚本,从系统数据库中的 SY07140 表中删除无效记录。 针对系统数据库运行以下脚本。
Delete SY07140 where CMDDICTID = 1
4. 运行以下脚本,在SY07140表上创建触发器,以删除自动向前移动的无效记录。
/*Microsoft Dynamics GP 2013 Trigger - CR10167*/if exists (select * from sysobjects where id = object_id('dbo.SY07140InsertTrigger') and sysstat & 0xf = 8)drop trigger dbo.SY07140InsertTriggerGOcreate trigger dbo.SY07140InsertTriggeron SY07140for insertasbeginDelete SY07140 where CMDDICTID = 1end