Skip to main content

Code Upgrade in axapta


Code Upgrade
The Code Upgrade tool is also found in the Add-ins menu. Where the Compare Object tool can be used to compare any type of object, the code upgrade tool is specialized for comparing methods. This tool is quite handy for comparing changes from an old to a new layer of a service pack or version upgrade.

 Code upgrade will show a class that has been modified in several layers.
You will see its methods listed in the left side. Methods modified in both the old layer and the new layer will be highlighted, i.e. if a method existing in the SYS layer of the old version has been modified in the new SYS layer. When you click on a method modified in more than one layer, Axapta will update the right window with a tab page representing each modified layer.

 The first tab page, Workspace will default to show the highest layer. From Workspace you can edit the method. It is preferable to open the code in the editor using the Edit button. In the sub menu Suggestion, the merge buttons will be active if the method is highlighted.

You can use the merge buttons to merge code from all layers to the workspace. This might not complete your upgrade of a method, but it helps having all code in one place. One or two layers will be listed in the sub menu Suggestion. These are the layers the code upgrade tool will suggest to use as  offset for the upgrade. Click the layer name to load the layer into the Workspace tab page.

The Compare button is used to compare two layers of a method. The compared layers will be shown on a new tab page with the differences colored. For highlighted methods, the compared tab pages will automatically be created for layers with differences.

Popular posts from this blog

strScan and Find a first occurrence of a string in a string using x++

strScan (Find a first occurrence of a string in a string) info("int strScan(str _text1,str _text2,int _position,int _number)"); info("Searches a text string for the occurrence of another string."); info("_text1 - The text string to search."); info("_text2 - The string to find."); info("_position - The position at which the search should start."); info("_number - The number of characters that should be searched."); info(int2str(strScan("ABCDEFGHIJ","DE",1,10)));

Code to get customer Primary Address in Ax 2012

Below Code to get customer Primary Address in Ax 2012. CustTable custTable_P; DirPartyTable dirPartyTable_P; DirPartyLocation dirPartyLocation_P; DirPartyLocationRole dirPartyLocationRole_P; LogisticsLocation logisticsLocation_P; LogisticsLocationRole logisticsLocationRole_P; LogisticsPostalAddress logisticsPostalAddress_P; LogisticsPostalAddress primaryAddress_P; while select custTable_P where custTable_P.AccountNum =='ED_01029' join dirPartyTable_P where dirPartyTable_P.RecId == custTable_P.Party join dirPartyLocation_P where dirPartyLocation_P.Party == custTable_P.Party && dirPartyLocation_P.IsPrimary==NoYes::Yes join dirPartyLocationRole_P where dirPartyLocationRole_P.PartyLocation == dirPartyLocation_P.RecId join logisticsLocationRole_P where logisticsLocationRole_P.RecId == dirPartyLocationRole

Get record from table on the basis of field id in Microsoft dynamics axapta x++

How to Get record from table on the basis of field id in dynamics axapta x++. just try following code in job to understand better way. emplTable emplTable; FieldId fieldId; ; fieldId = fieldNum(emplTable, Emplid); select emplTable; info(emplTable.(fieldId)); select emplTable where emplTable.(fieldId) == '1101'; info(emplTable.Name);