Microsoft Dynamics AX

From Infogalactic: the planetary knowledge core
Jump to: navigation, search
Microsoft Dynamics AX
Developer(s) Microsoft Corporation
Stable release 6.3.3000.110 (2012 R3 CU10) / November 24, 2015 (2015-11-24)[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 a new version: AX 2012.[5] Today, it is available and supported in more than 30 countries and 25 languages.

Development Centers

MDCC or Microsoft Development Center Copenhagen was once the primary development center for Dynamics AX.[6] 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:[7]

Traditional core (since Axapta 2.5)

  • General Ledger – ledger, sales tax, currency, and fixed assets features
  • Bank Management – receives and pays cash
  • Customer Relationship Management (CRM) – business relations contact and maintenance (customers, vendors, and leads)
  • Accounts Receivable – order entry, shipping, and invoicing
  • Accounts Payable – purchase orders, goods received into inventory
  • Inventory Management – inventory management and valuation[8]
  • Master Planning (resources) – purchase and production planning
  • Production – bills of materials, manufacturing tracking
  • Product Builder – product mode creation and maintenance
  • Human Resources – employee information
  • Project Accounting – projects creation and tracking (primarily from an accounting perspective)
  • Basic – data configuration
  • Administration Module – system configuration
  • Procurement and Sourcing
  • Sales and Marketing

AX 2012 R3

  • Call Center - employees take orders over the phone and are able to create sales orders
  • General Ledger - the ability to transfer opening balances in balance sheet accounts to a new fiscal year
  • Inventory and Warehouse Management - compare item prices, enhanced posting routine and a new Inventory aging report
  • Master Planning - estimate future demand and create demand forecasts based on transaction history
  • Procurement and Sourcing - create your own soliciation request for RFQs, and more
  • Production Control - a new option to automate material reservations
  • Project Management and Accounting - new on-account billing rules and fee transactions that modify invoice proposal sales prices
  • Public Sector - now able to publish a request for quotation (RFQ) to the Vendor portal and now have the ability to view details of closed RFQs
  • Retail - commerce Data Exchange, updated retail server, new retail hardware station, and more
  • Sales and Marketing - register serial numbers during sales processes when preparing the packing slip or the sales order invoice
  • Transportation Management - plan transportation for inbound and outbound shipments, configure rating structures and view driver check-in and check-out history
  • Trade Allowance Management - define merchandising events, manage trade fund budgets, process customer payments (including deductions, and more
  • Warehouse Management - configure inbound and outbound intelligent workflows, use scanners/mobile devices to optimize precision in the picking and put-away processes, and more

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:

  • Enterprise Portal for Dynamics AX (built on Sharepoint Services)
  • Microsoft SQL Reporting Services integration
  • Microsoft SQL Analysis services (KPIs)
  • Project Server Integration
  • WorkFlow
  • Application Integration Framework (Webservices + Biztalk adapter)
  • A .Net Business Connector for third-party software (A COM adapter is also available)
  • Microsoft Dynamics Mobile 1.5 development tools
  • Microsoft Project Client
  • Microsoft Excel
  • Microsoft Word
  • Office 365

Architecture

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

  • The Database Server, a database that stores the Microsoft Dynamics AX data
  • The File Server, a folder containing the Microsoft Dynamics AX application files (in AX2012 application files are stored in the database)
  • The Application Object Server(s) (AOS), a service that controls all aspects of Microsoft Dynamics AX's operation
  • The Client(s), the actual user interface into Microsoft Dynamics AX

MorphX and X++

<templatestyles src="Module:Hatnote/styles.css"></templatestyles>

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;
    update_recordset userInfo
        setting enable = NoYes::No
        where userInfo.id != 'Admin'
            && userInfo.enable;
}

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 PartnerSource 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.[11] The oldest Axapta Technet post that can be found today dates to August 2000.[12] 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.

References

  1. Lua error in package.lua at line 80: module 'strict' not found.
  2. "Microsoft Dynamics AX 2009 system requirements" Microsoft website
  3. "Microsoft Dynamics AX 2009 product availability" Microsoft website
  4. "Microsoft acquires Navision (2002)" Microsoft website
  5. "Microsoft Dynamics AX 2012 Launches Worldwide"
  6. "Microsoft Development Center Copenhagen" Microsoft website
  7. "Microsoft Dynamics AX Business Ready Licensing editions" Microsoft website
  8. "Inventory management in Dynamics AX" Dynamics AX Training
  9. "Payroll Management - Microsoft Dynamics AX" Microsoft website
  10. "The Environmental Sustainability Dashboard" Microsoft website
  11. "Microsoft Dynamics AX Community" Microsoft website
  12. Lua error in package.lua at line 80: module 'strict' not found.

External links