Skip to main content

Better business insight with Microsoft Dynamics AX 2012 R2

Many organizations struggle with providing business insight in a timely manner as resource-constrained IT departments can’t keep up with the requests from business users. Far too often users are spending too much unproductive time creating manual reports that are static and outdated.
Facing ever-accelerating change and the pressure from more prevalent global competition, it is more important than ever that organizations have instant access to up-to-date financial and operational performance to spot trends and identify challenges so they can act early.
In previous versions of Microsoft Dynamics AX we enabled business intelligence as part of the ERP experience. The business user can access important information throughout the solution, via Role Center pages, which are dashboards that provide an overview of information that pertains to a user’s job function and by using Microsoft BI technology such as Microsoft Excel.
In Microsoft Dynamics AX 2012 R2 we further improved the BI capabilities by providing users with pre-built, extensible analytic capabilities and tools. These tools help support better decision making by enabling users to easily create, share and explore rich analytical reports with interactive visualizations on their own.
The BI enhancements in Microsoft Dynamics AX 2012 R2 enable users to:
  • Monitor business performance with enhanced pre-built content including a total of 15 SQL Server Analysis Services cubes and 45 Role Centers. Users can choose from more than 80 pre-defined KPIs with the ability to drill down into details and supporting information. New charting capabilities support visualization of large volumes of transactional and aggregated business data in Role Centers.
  • Analyze data by using rich visualization and interactive data exploration capabilities right from the role center with embedded Power View reports.
  • Perform ad-hoc analysis and discover new insights from within the Microsoft Dynamics AX 2012 R2 client based on pre-defined data cubes with Power View*, the highly interactive, familiar, browser-based data exploration, visualization, and presentation tool.
  • Explore and share business insights without help from IT by securely accessing and mashing-up data from the business solution using the improved OData providers and data services from Windows Azure Marketplace in Microsoft BI technology such as Microsoft Excel. 
  • Extend business overview information with external data, such as industry average comparison for better performance monitoring and improve accountability and collaboration by adding user’s real-time presence information.
Yvonne Haarloev 
Senior Product Marketing Manager Microsoft Dynamics ERP

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...