Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Microsoft Dynamics NAV Development Quick Start Guide
Microsoft Dynamics NAV Development Quick Start Guide

Microsoft Dynamics NAV Development Quick Start Guide: Get up and running with Microsoft Dynamics NAV

Arrow left icon
Profile Icon Alexander Drogin
Arrow right icon
NZ$14.99 NZ$38.99
eBook Dec 2018 210 pages 1st Edition
eBook
NZ$14.99 NZ$38.99
Paperback
NZ$48.99
Subscription
Free Trial
Arrow left icon
Profile Icon Alexander Drogin
Arrow right icon
NZ$14.99 NZ$38.99
eBook Dec 2018 210 pages 1st Edition
eBook
NZ$14.99 NZ$38.99
Paperback
NZ$48.99
Subscription
Free Trial
eBook
NZ$14.99 NZ$38.99
Paperback
NZ$48.99
Subscription
Free Trial

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Microsoft Dynamics NAV Development Quick Start Guide

Codeunits - Structuring C/AL Code

The first chapter of this book briefly introduced C/SIDE objects and the basic concept of the object model. We created a simple codeunit that simply shows a text message when executed. This chapter gives a deeper overview of the C/AL language and its capabilities. To introduce the internal NAV programming language, the chapter presents the concept of a codeunit—a container of code that is called by other objects, a code library. The first chapter already gave a short foreword on codeunits; now we will continue with the following topics:

  • Compiling a codeunit and error handling
  • Declaring and calling functions
  • Function parameters and return values
  • Declaring variables—variable scope
  • Passing variables by value and by reference
  • Record variables
  • codeunit variables—calling functions from other codeunits
  • Text constants
...

Compiling a codeunit and error handling

As we already know, codeunits, as well as other application objects, are created in the Object Designer. The first time you save a new object, you will be requested to assign an ID number and a name to it and compile the object. But the Compiled option prevents saving the object if its code has syntax errors. Let's see how we can handle the commonplace situation of saving an object before fixing bugs.

Handling compilation errors

If the code of an object contains a syntax error, an attempt to compile this object will fail, and the compilation will stop on the first encountered error. Let's modify the Hello World example from the previous chapter and see how the Object Designer...

Declaring and calling functions

When you open a NAV application object in the designer and review its code, function names are probably among the first things you notice. Code is structured in blocks with function headers clearly highlighted in bold font. But if you try to change a function's declaration—for example, change its name or add a parameter—you will see that the line with the function declaration is not editable.

Function names, return types, and parameter lists are accessed through a separate editor, and cannot be modified in the main code editor window.

In the next example, we will create a simple function to illustrate the process of declaring C/AL functions. This is a slightly modified version of the previous Hello World example. Now, we will not show the message in the standard codeunit trigger, but delegate the greeting to a local function instead...

Function parameters and return values

In the previous example, we simply call a function that displays a hardcoded message. But if we want to make the function more flexible and able to show different text, we must pass a text parameter into the function. Function parameters in NAV are declared in the same way as functions themselves. A line of code representing the function declaration in the code editor is not editable. Parameters are described in a separate editor window instead. In this section, we will see how to pass parameters to a function and return a resulting value from it.

How to add parameters to a function

Let's modify the codeunit so that the message to be shown to the user will be passed in the function...

Declaring variables – variable scope

As we saw in the previous topic in this chapter, functions and function parameters in C/SIDE are not declared directly in the code editor. Instead, they are entered in a tabular view presented in a separate editor. This is also true for variables; we do not describe variables in C/AL code, but access the variable declaration through the C/AL Locals and C/AL Globals windows.

Local variables

To illustrate the declaration and use of local variables, we will implement a simple algorithm comparing two strings to find the editorial distance, or Levenshtein distance. This distance is a measure of similarity between strings that is often used in various text processing systems to suggest...

Passing variables by value and by reference

To simplify the example, we will skip the sorting of the input array, but instead generate a random array whose elements are already sorted in ascending order. The GenerateRandomSortedArray function will do this: it simply fills an array with random values, each value greater than the previous one. A generated array is the result that must be returned from the function. But the function return value can only be a scalar; it is not possible to return an array directly as a function value. A ByVar parameter can help us to work around this problem. If we pass an array variable to GenerateRandomSortedArray by reference, any changes made inside the function will be visible to the calling code. Let's see how this works.

Inside the function, declare an InputArray parameter of type Integer and set the checkmark in the Var field. To complete...

Record variables

Record is one of the most important and widely used data types in C/AL code. A Record variable refers to a database table, and allows us to retrieve and manipulate table data. A code example in this section will demonstrate how to search data with a Record variable and update found records. This is a more business-related scenario than those we coded in previous sections. As an example, we will update sales prices for an item based on certain criteria calculated from other database tables.

Iterating over a recordset

To declare a Record variable, you must enter its name, select the Record data type in the DataType field, and choose one of the database tables as the variable's Subtype. In the next code...

Codeunit variables – calling functions from other codeunits

In all code examples in this chapter, we created codeunits that contained functions used locally by codeunits themselves. But a codeunit is a code library that could contain common functionality available to other objects. The following section will show how to invoke functions from code libraries in C/AL:

LOCAL ExportPriceList(FileName : Text)
XMLDoc := XMLDoc.XmlDocument;
XMLDOMManagement.AddRootElement(XMLDoc,'PriceList',RootNode);
IF Item.FINDSET THEN
REPEAT
XMLDOMManagement.AddElement(RootNode,'Item',Item."No.",'',ItemNode);
XMLDOMManagement.AddAttribute(ItemNode,'Description',Item.Description);
XMLDOMManagement.AddAttribute(ItemNode,'Price',FORMAT(Item."Unit Price"));
UNTIL Item.NEXT...

Text constants

Text constants in C/AL are declared the same way as variables: through the C/AL Locals or C/AL Globals editors. In most cases, constants are declared as globals. It is good practice to avoid global variables when a local one is sufficient, but this is not the case with constants. A global variable often causes specific bugs; since it is available in any part of the code, and any function can change its value, it becomes very difficult to track the value of the variable while the volume of the code grows. This is not a problem with constants, because once assigned, the value of a constant cannot be changed.

With this in mind, in all code samples where text constants are involved, we will declare them as globals. A typical application of text constants is UI messages: process information or error notifications. And having a constant in the global scope is handy when...

Summary

The second chapter gave a more detailed overview of a topic started in Chapter 1, Getting Started with the NAV Development Environment. We learned to create codeunits, structure C/AL code into functions, pass parameters to functions, and use return values. The first examples illustrating C/SIDE capabilities were of a somewhat abstract nature, but closer to the end of the chapter, we learned how to use the database and discussed a more business-related scenario.

In the following chapter, readers will not only learn to use Record variables, but will complete a walk-through example of creating a custom table and writing table triggers.

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Solve common business problems with the valuable features and flexibility of Dynamics NAV
  • Understand the structure of NAV database - how documents and business entities are mapped to DB tables
  • Design user interface and bind the presentation layer with the data storage

Description

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.

Who is this book for?

This book is for experienced NAV users who have an understanding of basic programming concepts. Familiarity with NAV development environment or its internal development language-C/AL is not expected.

What you will learn

  • Manage NAV Server configuration with Microsoft Management Console
  • Manage NAV installation with the NAV Administration Shell
  • Create integration events and extend functionality via the NAV event model
  • Run XML Ports from C/AL code
  • Design reports and write client code in RDLC expressions

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Dec 27, 2018
Length: 210 pages
Edition : 1st
Language : English
ISBN-13 : 9781789616781
Vendor :
Microsoft

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Dec 27, 2018
Length: 210 pages
Edition : 1st
Language : English
ISBN-13 : 9781789616781
Vendor :
Microsoft

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just NZ$7 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just NZ$7 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total NZ$ 219.97
Implementing Microsoft Dynamics 365 Business Central On-Premise
NZ$80.99
Microsoft Dynamics NAV Development Quick Start Guide
NZ$48.99
Programming Microsoft Dynamics NAV
NZ$89.99
Total NZ$ 219.97 Stars icon
Banner background image

Table of Contents

9 Chapters
Getting Started with the NAV Development Environment Chevron down icon Chevron up icon
Codeunits - Structuring C/AL Code Chevron down icon Chevron up icon
Tables - Creating Data Structure Chevron down icon Chevron up icon
Designing User Interface Chevron down icon Chevron up icon
Exchanging Data with XML Ports Chevron down icon Chevron up icon
NAV Event Model Chevron down icon Chevron up icon
Presenting Data in Reports Chevron down icon Chevron up icon
Debugging Your Code Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.