Increasing the length of the Description field in movement journal in AX 2009

旧时模样 提交于 2019-12-25 07:24:12

问题


How can we increase the field length of Description field up to 200 characters available in Movement Journal in Inventory module in AX 2009?

The field is InventJournalTable_DescriptionInventJournalTable(InventJournalTable).Description


回答1:


  1. Create a new Extended Data Type of type String.
  2. Set the StringSize property of your data type to 200.
  3. Find the JournalDescription Extended Data Type in the AOT.
  4. Change the Extends property of JournalDescription to the name of your new data type.
  5. Synchronize the database.



回答2:


You can edit standard EDT's by going to System Administration - Setup - System - Modify data types. There you can adjust the length of standard EDT's which cannot be adjusted otherwise.




回答3:


The InventJournalTable has it's Description field of extended data type JournalDescription (String Size: 60). Therefore open the AOT, Data dictionary and Extended data type branch, and find the JournalDescription entity, increasing it's string size to 200. Sincronize...

And document your changes.




回答4:


You cannot edit the JournalDescription even in the AOT because other transactions will be affected. And you don't want to change the records of those transactions either. Think of the possibility that something will be affected once you change the length or any properties of a field. Best thing is, try to do it in the Test environment of your system.



来源:https://stackoverflow.com/questions/15451100/increasing-the-length-of-the-description-field-in-movement-journal-in-ax-2009

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!