Skip to main content

A Brief History of MS Dynamics Axapta

Danish company Damgaard A/S developed Axapta, and the first version was released in March 1998 in Denmark and the US. These days it’s available in 45 languages, and its business solutions, partner, and customer base is growing quickly, making Axapta a major presence in the global ERP market. It’s especially strong in the SME market and is advancing rapidly in the tier-one corporate accounts segment.
Its predecessor products, Concorde and XAL, go back to 1983, so although Axapta is a reasonably recent product by ERP standards, it is built on two decades of technology and business experience. It inherits heavily from these products and leverages their code bases, design, and
functionality.
Axapta became part of the Business Solutions division of Microsoft when Microsoft acquired Navision A/S in 2002. The main steps leading to the current version of Axapta are as follows:
• March 1998: Release of version 1.0 in the US and Denmark. Version 1.0 included Finance, Trade, Inventory Management, Logistics, and Production modules, plus support for SQL Server 6.5 and Oracle 7.0.
• November 1998: Release of version 1.5, which added support for the Component Object Model (COM) calling interface, service pack technology, and support for Norway, Sweden, Germany, Britain, the Netherlands, Austria, Switzerland, Belgium, and Spain, and supported the Euro.
• July 1999: Release of version 2.0, which added, among other features, the Business
Connector, ActiveX support, and an early release of Axapta Object Server (AOS). This was, consequently, the first 3-tier release.
• January 2000: Release of version 2.1. The first Windows logo–certified version of Axapta that also delivered support for interacting with Axapta from aWeb client.
• December 2000: Release of version 2.5, which delivered a complete Web-development environment, the auto upgrade tool, support for online analytical processing (OLAP), and an application service provider (ASP) solution.
• October 2002: Release of version 3.0. This version represents a major technological leapand includes a new access control system. It also dropped feature keys, and delivered intercompany accounting and Enterprise Portal (EP).
• December 2002: Release of Service Pack 1 for version 3.0.
• October 2003: Release of Service Pack 2 for version 3.0.
• June 2004: Release of Service Pack 3 for version 3.0. This service pack contained over
1000 bug fixes and Dr. Watson support.
• May 2005: Release of Service Pack 4 for version 3.0. This service pack included major fixes to the inventory closing procedure, along with other functionality enhancements and performance improvements.

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);