NAV TechDays 2018

Let me ask you something. What do you do on November 22 and 23, 2018? Well, let me not ask you what you do, let me tell you what you…

Continue Reading NAV TechDays 2018

About

Hi, I am Vjeko. Welcome to my blog! This is a place where I share ideas, tips, tricks, solutions, musings and ramblings, and stuff in general about Microsoft Dynamics 365…

Continue Reading About

Conditional directives

One of the new features of the AL compiler that arrived with 2020 Wave 2 is Precompiler directives. This is nothing spectacular, programming languages had these kinds of things since…

Continue Reading Conditional directives

A couple of ideas for HttpClient

When invoking any REST web services, a lot of AL code mostly looks like this: procedure CallRESTFoo() var Client: HttpClient; Response: HttpResponseMessage; Body: Text; Json: JsonObject; begin Client.Get('https://foo.bar/', Response); Response.Content.ReadAs(Body);…

Continue Reading A couple of ideas for HttpClient