Book Image

Microsoft Dynamics NAV Development Quick Start Guide

By : Alexander Drogin
Book Image

Microsoft Dynamics NAV Development Quick Start Guide

By: Alexander Drogin

Overview of this book

Microsoft Dynamics NAV is an enterprise resource planning (ERP) software suite for organizations. The system offers specialized functionality for manufacturing, distribution, government, retail, and other industries. This book gets you started with its integrated development environment for solving problems by customizing business processes. This book introduces the NAV development environment – C/SIDE. It gives an overview of the internal system language and the most essential development tools. The book will enable the reader to customize and extend NAV functionality with C/AL code, design a user interface through pages, create role centers, and build advanced reports in Microsoft Visual Studio. By the end of the book, you will have learned how to extend the NAV data model, how to write and debug custom code, and how to exchange data with external applications.
Table of Contents (10 chapters)

Interactive reports

RDLC reports enable developers to add interactive capabilities to reports. In this section, we will see how to add sorting buttons to the generated report and allow end users to sort the output by any of the report columns. To do this, we will modify the Customer Payment Dates report. The default report layout sorts the data by customer number. But probably users want to see the list sorted by customer name or the payment date instead; with RDL, we can give them this option. First, let's add sorting to the Customer No. column, which is our default sorting key:

  1. Right-click on the textbox containing the header of the first column: Customer No.. It is important that the sorting property is enabled on the header textbox, not the data field.
  2. Select Text Box Properties from the drop-down menu and choose the Interactive Sorting tab in the properties window.
  3. ...