Archief: C/AL

Configuring a SQL Server database for Microsoft Dynamics NAV & Writing less expensive C/AL code for customizations

It is imperative that while configuring Microsoft Dynamics NAV, the hardware and software recommendations from Microsoft are taken into consideration. From using the latest version of Microsoft Windows, Microsoft SQL Server, or other Microsoft stack products that are intended to ...

.NET Framework and C/AL Type Mappings

In C/AL, some .NET Framework data types, such as strings, integers, and decimals, are automatically converted to C/AL types. Because the types are converted, the .NET Framework versions of these types are not supported in C/AL. For example, instead of ...

How to: Call .NET Framework Members from C/AL Code

You can call .NET Framework type members, including methods, properties, and constructors, from C/AL code. To call members, you define a DotNet type variable that references the .NET Framework assembly type that contains the member and then call the variable ...

Calling .NET Framework Members from C/AL Code

You can call .NET Framework type members, including methods, properties, and constructors, from C/AL code with the DotNet data type for C/AL variables. This section provides an overview of the DotNet data type, guidelines on its use, and aspects about ...

Constants in C/AL

Let’s start this post with a little example: In the MSXML library, the XMLDocument class has a method called CreateNode, which accepts an integer representing the desired node type as its first parameter. Bron : Zen & the Art of ...

Refactoring a C/AL Function – an example

In a C/SIDE application (whose true identity shall remain unknown, to protect both the innocent and my job security ;)), I recently read this function in table 5050 Contact. Bron : Zen & the Art of C/SIDE development Lees meer...

Constants in C/AL

Let’s start this post with a little example: In the MSXML library, the XMLDocument class has a method called CreateNode, which accepts an integer representing the desired node type as its first parameter. Bron : Zen & the Art of ...