Microsoft Dynamics AX

Microsoft Dynamics AX
Developer(s) Microsoft Corporation
Stable release
7.0.4127.16103 / May 27, 2016 (2016-05-27)[1]
Development status Active
Operating system Windows Server 2003/2008 (AOS), Microsoft Windows (Clients)[2]
Platform x86 / x64
Available in Arabic, Chinese (Simplified), Czech, Danish, Dutch (Netherlands), English, Estonian, Finnish, Dutch (Belgium), French, German, Hungarian, Icelandic, Italian, Japanese, Latvian, Lithuanian, Norwegian, Polish, Portuguese, Russian,Spanish, Swedish, Thai, Turkish[3]
Type Enterprise resource planning
License MS-EULA
Website microsoft.com/en-us/dynamics/erp-ax-overview.aspx

Microsoft Dynamics AX is one of Microsoft's enterprise resource planning software products. It is part of the Microsoft Dynamics family.

History

Microsoft Dynamics AX was originally developed as a collaboration between IBM and Danish Damgaard Data as IBM Axapta. Axapta was initially released in March 1998 in the Danish and U.S. markets. IBM returned all rights in the product to Damgaard Data shortly after the release of Version 1.5. Damgaard Data merged with Navision Software A/S in 2000 to form NavisionDamgaard, later named Navision A/S. Microsoft acquired the combined company in July 2002.[4]

In September 2011, Microsoft released version AX 2012.[5] It was made available and supported in more than 30 countries and 25 languages.

The newest version was released in February 2016.[6]

Development Centers

MDCC or Microsoft Development Center Copenhagen was once the primary development center for Dynamics AX.[7] MDCC is now located in Kongens Lyngby and also houses Microsoft Dynamics NAV and several other Microsoft Dynamics family products. In the same building is also found Microsoft Danmark. Microsoft employs about 900 people of around 40 different nationalities in Denmark. In addition to MDCC, Microsoft carries out AX development in Bellevue, Washington, Fargo, North Dakota, Moscow, Russia, Shanghai, China and Pakistan. →→

Features (modules)

Microsoft Dynamics AX contains 19 core modules:[8]

Traditional core (since Axapta 2.5)

AX 2012 R3

For the full list of AX 2012 R3 features, click here

Extended core

The following modules are part of the core of AX 2009 (AX 5.0) and available on a per-license basis in AX 4.0:

External components

Several external components are also available:

Architecture

The Microsoft Dynamics AX software is composed of four major components:

MorphX and X++

"MorphX" redirects here. For the video game, see MorphX (video game).

Custom AX development and modification is done with its own IDE, MorphX, which resides in the same client application that a normal day-to-day user would access, thus allowing development to take place on any instance of the client. Since the Dynamics AX 2012 version, development can also be performed in Microsoft Visual Studio 2010 through a Visual Studio plugin.

MorphX is an integrated development environment in Microsoft Dynamics AX that developers use to graphically design data types, base enumerations, tables, queries, forms, menus and reports. In addition to application object future versions of AX, it provides access to application code by launching the X++ code editor.

MorphX uses referencing to link objects, so changes in—for example—datatypes of field names automatically updates everyplace that uses those field names (such as forms or reports). Furthermore, changes made through MorphX show in the application immediately after compilation.

Microsoft Dynamics AX also offers support for version control systems (VCS) integrated with the IDE, which facilitates development collaboration. Another tool converts table structures and class structures to Visio diagrams. Actual implementation limits the practical use of both these features.

X++ itself is the programming language behind MorphX, and belongs to the curly brackets and .-operator class of programming languages (like C# or Java). It is an object-oriented, class-based, single dispatch language. X++ is derived from C++ (both lack the finally keyword for example) with added garbage collection and language-integrated SQL queries.

Code samples

X++ integrates SQL queries into standard Java-style code. The following three examples produce the same result, though the first has generally better performance. Samples 2 and 3 hint at an object-like behavior from table buffers.

Sample #1

/// <summary>
/// This job is used as an X++ sample
/// </summary>
public static void xppTest1(Args _args)
{    
    UserInfo userInfo;

    ttsBegin;
    update_recordset userInfo
        setting enable = NoYes::No
        where userInfo.id != 'Admin'
            && userInfo.enable;
    ttsCommit;
}

Sample #2

/// <summary>
/// This job is used as an X++ sample
/// </summary>
public static void xppTest2(Args _args)
{
    UserInfo userInfo;

    ttsBegin;
    while select forupdate userInfo
        where userInfo.id != 'Admin'
            && userInfo.enable
    {
        userInfo.enable = NoYes::No;
        userInfo.update();
    }    
    ttsCommit;
}

Sample #3

/// <summary>
/// This job is used as an X++ sample
/// </summary>
public static void xppTest3(Args _args)
{
    UserInfo userInfo;

    ttsBegin;
    select forupdate userInfo
        where userInfo.id != 'Admin'
           && userInfo.enable;
    while (userInfo)
    {
        userInfo.enable = NoYes::No;
        userInfo.update();
        next userInfo;
    }
    ttsCommit;
}

Future

On its Partner Source web site, Microsoft publishes a "Statement of Direction" for Dynamics AX that describes future development plans. It states that future versions of AX will include increased vertical market functionality, cloud computing, and HTML 5.

Presence on the Internet

One of the most notable sources of information about Axapta (prior to the Microsoft purchase) was technet.navision.com, a proprietary web-based newsgroup, which grew to a considerable number of members and posts before the Microsoft purchase in 2002.

After Microsoft incorporated Axapta into their Business Solution suite, they transferred the newsgroup's content to the Microsoft Business Solutions newsgroup.[12] The oldest Axapta Technet post that can be found today dates to August 2000.[13] During the Axapta 3.0 era, this newsgroup in conjunction with secured official Microsoft websites (Partnersource for Microsoft Partners and Axapta resellers and Customersource for licensed Axapta customers) accounted for most of the official documentation sources on Axapta. During this time, freely accessible documentation remained scarce. Following Microsoft's release of Dynamics AX 4.0, Axapta's presence on the World Wide Web greatly improved through heightened interest from professional blogs as well as a continually improving presence on MSDN. Though MSDN contained mostly placeholders immediately following the release, it now contains more detailed information—from a complete SDK, to white papers and code samples.

Community

The AX community consists primarily of employees of Dynamics Partners, end-users, and MS MVP's (Microsoft Most Valuable Professional).

The Dynamics AX User Group (AXUG) is the largest, user-led community for companies using the software.

Events

AXUG Summit

AXUG Summit is held each fall and is an independent, user-led conference.

Personalization and Predictive Analytics

At the National Retail Federation (NRF) Conference 2016 in New York, Microsoft unveiled its partnership with Infinite Analytics, a Cambridge, MA based Predictive Analytics & Personalization company. With this partnership, Microsoft now offers predictive analytics based personalization for retail in its Microsoft Dynamics AX platform.[14]


References

This article is issued from Wikipedia - version of the 11/3/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.