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 […]
Author Archives: Maxime Caty
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 […]