International Core model migration audit for Business Central

Some Micrsoft Dynamics end users/companies start wondering about the future for their ERP when they heard talking about Business Central and cloud services incompatibiliy with C/AL. Specially when they invested huge amount of money in tuning their ERP. Extension technology is a great thing for Dynamics future and have plenty of long term benefits. But […]

Extension : Show invoice/cr. Memo from shipments and receipts

This extension help you to open invoice or credit memo fastly with a new action button from following pages : Posted Sales Shipment Posted Sales Return Receipt Posted Purchase Receipt Posted Purchase Return Shipment Item Ledger Entries The Invoice/Cr Memo is retrieved with the value entry linked to the item ledger entry. In case of […]

Http web request SSL validation

You may need to communicate with external web service in Nav, such as API for Ecommerce, Logistic tracking or whatever. To do that, you can inspire from codeunit 1297 for Rest API and codeunit 1290 for Soap API. I find out that Http Web request component from Microsoft .Net do not allow any communications with […]

Fast Nav URL encoder C/AL

If you need to send URL through external component such as web API or control Add-in, you may have to encode the text for ascii to ansii purpose (like replacing space by %20 and so on). Gunnar post a code unit for that here but it’s not working with latest version of Nav, I’ve correct […]

Exporting Nav object as text with C/AL code

Title say it all. I searched a way to export Nav object as text and only way I found is to call finsql.exe command with some arguments. I needed this functionnality to export independntly each object as text file for source code managment purpose. Please note that this code can’t be used if the user […]