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 […]

Fastly publish extension from Nav 2018 RTC

If you already working with Nav 2018 extension, you know you have to go through powershell command to import new .app in Nav : How to: Publish and Install Extention I developped small function to allow you to do this fastly through RTC on Extention management page. A new button “Import” ask an app file with […]

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 […]

Consume Nav WebService CodeUnit with Php

You can find plenty information over internet to consume nav web service but lot of them need modification for working in your case. I provide you a Php code to consume Nav Codeunit by SOAP Webservice tested and working. Nav part : – Create a codeunit with public method you want to be accessible. – […]

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 […]

Modify Nav Database for automatic source code archiving

I searched a way to automaticly export Nav objects source code when modified/compiled. This save the powershell export command time. This was destinated to a TFS server and structured by object type but you can easly modify file name/structure as you want if you’re ok with SQL. Warning, this modification do not concern Azure Nav installations. […]

Powershell Visual App to manage Nav bases

As you probably know, Powershell is a very usefull tool to manage Nav bases and automate administrative tasks. If you don’t hear about Waldo’s Powershell module, you need to visit the following link. He create a lot of usefull functions to enlarge the Microsoft panel of Powershell cmdlet http://www.waldo.be/2017/01/17/powershellget-waldos-powershell-modules/ For my company we have to regulary […]