Skip to main content

Cumulative update 7 content now available for Microsoft Dynamics AX 2012 R2


Cumulative update 7 for Microsoft Dynamics AX 2012 R2 is now available on CustomerSource and PartnerSource and we've posted new content to support it on TechNet and MSDN.
To view details of the supporting content that is available for the new features in CU7, see What's new in Microsoft Dynamics AX 2012 R2 cumulative update 7. Also, the New, Changed, and Deprecated features guide is now available as individual topics in the Microsoft Dynamics AX 2012 library on TechNet. The guide has been thoroughly updated, so take a look!
New features for each audience in CU7 include the following:

Application users

Module updates: A number of features have been added for application users, particularly in the following modules: Accounts payable, Accounts receivable, Budgeting, Fixed assets, General ledger, Human resources, Inventory and warehouse management, Payroll, Procurement and sourcing, Product information management, Production control, Project management and accounting, Public Sector, Retail, and Sales and marketing.
Other new features:
  • Office Add-ins for Microsoft Dynamics AX
  • Sales tax processing
Companion apps: Along with cumulative update 7 for Microsoft Dynamics AX 2012 R2, Microsoft is releasing several companion apps that work with the product. These apps are compatible only with installations of cumulative update 7 or later for Microsoft Dynamics AX 2012 R2.
Country/region-specific features: There are many new country/region-specific features, particularly for the following countries: Belgium, Brazil, China, Czech Republic, Denmark, Finland, France, Germany, India, Italy, Japan, Latvia, Netherlands, Norway, Poland, Russia, Spain, and Switzerland.

System administrators

A number of features have been added for system administrators. Key features include:
  • Update installer now includes support for selecting application updates based on module, configuration key, country/region, or business process model from Lifecycle Services, as well as automatically merging code changes when possible.
  • VSS writer support for backing up and restoring AX 2012 R2 with System Center Data Protection Manager.
  • Data import/export framework available from the update installer, and supports many new entities.
  • Reporting changes include: Windows PowerShell command for integrating multiple Reporting Services instances with Microsoft Dynamics AX, ability to email reports to specific people by using tokens, new methods for setting advanced printer properties, and that Management Reporter can now be installed with Microsoft Dynamics AX from Setup.

Developers

A number of features have been added for developers. Key features include:
  • AxBuild.exe is a new tool that accomplishes a full X++ compile to p-code on the AOS. Using this tool is much faster than compiling on the client.
  • Reporting changes include: Windows PowerShell command for integrating multiple Reporting Services instances with Microsoft Dynamics AX, a new class that improves the performance of the report server, the ability to email reports to specific people by using tokens, new methods for setting advanced printer properties, an updated Compare Tool for SSRS Reports, and that Management Reporter can now be installed with Microsoft Dynamics AX from Setup.

Popular posts from this blog

What does this mean: "The form datasource query object does not support changing its AllowCrossCompany property after the form has executed the query."?

I have made a form with datasources vendtable and vendtrans. Inside vendtable_ds.executequery() looks like this: QueryBuildDataSource queryBuildDatasource ,queryBDS_VendTrans_Invoice; ; queryBuildDatasource = this.query().dataSourceTable(tablenum(vendtable)); queryBDS_VendTrans_Invoice = this.query().dataSourceTable(tablenum(vendtrans)); if (curext() == "MASTERCOMP") { this.query().allowCrossCompany(true); } else { this.query().allowCrossCompany(false); } //FilterVendorName = stringedit control on form if (FilterVendorName.text()) { queryBuildDatasource.addRange(fieldNum(VendTable,Name)).value(strfmt("*%1*", FilterVendorName.text())); } else { queryBuildDatasource.clearRange(fieldNum(VendTable,Name)); } //FilterInvoiceNumber = stringedit control on form if (FilterInvoiceNumber.valueStr() == "") { queryBDS_VendTrans_Invoice.enabled(false); } else { queryBDS_VendTrans_Invoice.enabled(true); queryBDS_VendTrans_In...

Credit Note [Dynamics AX] using X++

This post will help to create credit note for a sales order based on the invent lot id. All the invoices raised for a particular sales line – Lot Id will be raised back as a credit note. Information on Credit Note: A credit note or credit memorandum (memo) is a commercial document issued by a seller to a buyer. The seller usually issues a Credit Memo for the same or lower amount than the invoice, and then repays the money to the buyer or sets it off against a balance due from other transactions Below Code will help to create credit note for all the invoices raised against the sales line -lot id. Please note: This code can be customized as per your requirements. This is just a template to help creating credit note using X++ code. Please test the code before use. static void SR_CreateCreditNote_Sales(Args _args) { // Coded by Sreenath Reddy CustInvoiceTrans custInvoiceTrans; Dialog dialog = new Dialog(“Create credit note – for sales.”); DialogField dfInv...