Text format upgrade
As part of the upgrade toolkit, there is a folder called Object Change Tools
, which contains a tool called TextFormatUpgrade2013
. This tool has to be used during the application code upgrade process.
There are several object properties, parts, triggers, text in code, and so on, that are no longer available in Microsoft Dynamics NAV 2013. Some of them have been replaced by other properties, parts, or triggers. Some of them have just been removed.
As part of the code upgrade to Dynamics NAV 2013, we have to get rid of all the old stuff and get a clean object for the new application version.
The text format upgrade tool does the following:
- Replaces the
LookupFormID
table and page property withLookupPageID
- Replaces the
DrillDownFormID
table property withDrillDownPageID
- Replaces the text form with the text page on the value of former table properties
LookupFormID
andDrillDownFormID
- Replaces code
FORM.RUN(FORM::
andFORM.RUNMODAL(FORM::
withPAGE.RUN(PAGE::
andPAGE...