Book Image

Learning MS Dynamics AX 2012 Programming

By : Mohammed Rasheed, Erlend Dalen
Book Image

Learning MS Dynamics AX 2012 Programming

By: Mohammed Rasheed, Erlend Dalen

Overview of this book

<p>This tutorial has been carefully structured to guide you through the basic features of AX development and get you started as quickly as possible. With this book, you will soon be able to develop and maintain comprehensive management solutions to enhance your Dynamics AX 2012 application's performance. Starting with a tour of the development environment, you'll gain a deep understanding of Dynamics AX tools and architecture, before getting to grips with X++ for deeper customization. You will also learn how to search, manipulate, and integrate data.</p> <p>The practical examples in this book take you through sample AX development projects and help you learn to create forms, reports, menu&nbsp; items, menus, and navigation pages. The book also helps you work with MorphX. By the end of this book, you will have a better understanding of the inner workings of Microsoft Dynamics AX—making your development simpler and faster, and your applications fast, reliable, and robust.</p>
Table of Contents (21 chapters)
Learning MS Dynamics AX 2012 Programming
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Links
Debugger
Index

Reports


In AX, reports are used to display data to users in a format that is suitable for the way that the information is read. Reports is a commonly used word to describe all predefined outputs that are printed on paper. So, this can be picking list, invoices (that is, business documents), cash flow statements, and so on.

All reports in AX use SQL Server Reporting Services (SSRS) to render reports. This effectively means that all the functionalities available in SSRS are now available to AX report developers.

In the previous versions of Dynamics AX, reports were built using a native MorphX report designer. This reports designer is still available in AX 2012; however, it is scheduled to be deprecated in the next release and none of the start reports leverage this technology—instead, all reports are executed using SSRS.

The SQL Server reports are more flexible and can use diagrams, pivot and key performance indicators, as well as standard two dimensional report layouts. It is also very easy...