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 that.
I added a init function for batch encoding to save processing time if you call the function multiple time.
You can use the 50248 code unit provided like this :
CduURLEncoding.FctEncodeURI(Your URL Here); // Return URL encoded
This function was tested over Nav 2016, 2017 and 2018.
Codeunit 50248 Fast URL Encoder.zip
thank 🙂
Worked like a charm. Thank you.
I think the solution some people may be looking for is this…
TypeHelper: Codeunit “Type Helper”;
TypeHelper.UriEscapeDataString(someStr) // spaces become %20
TypeHelper.UrlEncode(someStr) // spaces become +