Book Image

Mastering Microsoft Dynamics AX 2012 R3 Programming

By : Simon Buxton, Mat Fergusson
Book Image

Mastering Microsoft Dynamics AX 2012 R3 Programming

By: Simon Buxton, Mat Fergusson

Overview of this book

<p>Due to its interesting capabilities such as finance and supply chain management, business intelligence and reporting, project management, and so on, Microsoft Dynamics is one of the most widely used solutions adopted by many organizations across the globe. This book is a step-by-step tutorial that covers elements from the initial design through to development. Each concept is fully explained and demonstrated by the creation of a real-world project. You will learn some really useful, advanced development techniques such as extending your code with metadata and exception handling.</p> <p>This book is an invaluable tutorial if you are moving from another ERP system or language, or if you are a technical consultant with a desire to create efficient functional designs and business solutions.</p>
Table of Contents (21 chapters)
Mastering Microsoft Dynamics AX 2012 R3 Programming
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

What are parts?


In terms of adding business intelligence to the UI, we will not use OLAP cubes (which provide statistical data that is not real-time), but instead add real-time key information to list pages and detail forms in the form of parts. OLAP is beyond the scope of this book.

There are three types of parts:

  • Info parts: These are the most common, and you can see these on the right-hand side of most list pages and details forms. They show a small, key piece of information based on a query.

  • Form parts: These are used in many places. They can show pop-up information as you hover over a field, or more complicated information on the right-hand-side pane.

  • Cues: These are placed onto a form as a cue group. Cues are used on the role center and as parts on a list page or details form. On the list page, they are presented as a set of links that will take the user to a filtered set of data and show a count of the associated records, with an optional total.

In this chapter, we will add each of these...