Hi All,
Recently, I encountered this synchronization error in AX 2012
Error:
I got this error on opening Customer form after I did a update of my local AX with a copy from UAT AX.
Error:
Illegal data conversion from original field CustTable.ServiceRegionsDN to CustTable.ServiceOrderDN: unable to convert data types to anything but character field type (14 to 49)
Note: ServiceRegionsDN and ServiceOrderDN are custom VAR fields.
Solution:
Note - Please be careful while doing any SQL update from database. I did this in my local sandbox, Not recommended to do it in Production AX.
Check the field id in AOT and compare it with SQLDictionary table in SQL with the following query
select * from sqldictionary where TABLEID in (select TABLEID from sqldictionary where name = 'CustTable')
and name = 'ServiceRegionsDN '
Update SQLDictoniary table with the correct fieldid
update SQLDICTIONARY set fieldid = 60080 where TABLEID in
(select TABLEID from sqldictionary where name = 'CustTable'
)
and name = 'ServiceRegionsDN '
Reference - https://blogs.msdn.microsoft.com/axsupport/2012/09/19/troubleshooting-aot-synchronization-errors/
Greetings! Welcome to my Dynamics AX 7 and related MS Technologies blog.
Total Pageviews
Search This Blog
Monday, May 30, 2016
Dynamics AX 7 Update 1 Released
Dear All,
Just letting you know Microsoft has released Update 1 for AX 7. You can read more about this release and What's New Over here - https://ax.help.dynamics.com/en/wiki/whats-new-or-changed-in-dynamics-ax-7/
The steps for deploying this update from LCS onto your environments are listed in the release notes over here - https://blogs.msdn.microsoft.com/lcs/2016/05/27/may-2016-release-notes/
Just letting you know Microsoft has released Update 1 for AX 7. You can read more about this release and What's New Over here - https://ax.help.dynamics.com/en/wiki/whats-new-or-changed-in-dynamics-ax-7/
The steps for deploying this update from LCS onto your environments are listed in the release notes over here - https://blogs.msdn.microsoft.com/lcs/2016/05/27/may-2016-release-notes/
Subscribe to:
Posts (Atom)