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
$19.99 per month
Paperback Dec 2018 210 pages 1st Edition
eBook
$9.99 $25.99
Paperback
$32.99
Subscription
Free Trial
Renews at $19.99p/m
Arrow left icon
Profile Icon Alexander Drogin
Arrow right icon
$19.99 per month
Paperback Dec 2018 210 pages 1st Edition
eBook
$9.99 $25.99
Paperback
$32.99
Subscription
Free Trial
Renews at $19.99p/m
eBook
$9.99 $25.99
Paperback
$32.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
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 : 9781789612769
Vendor :
Microsoft
Languages :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

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

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 $5 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 $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 148.97
Implementing Microsoft Dynamics 365 Business Central On-Premise
$54.99
Microsoft Dynamics NAV Development Quick Start Guide
$32.99
Programming Microsoft Dynamics NAV
$60.99
Total $ 148.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

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.