salesforce,integration,dynamics-nav
You can use Web services to read/modify Nav data. I suppose upgrade of web service based integration will go smoothly between Nav 2009 and Nav 2015. See this answer for very basic description of possible integration how it looks from Nav side. Other options: Access nav data directly via SQL....
php,recursion,dynamics-nav,dynamics-nav-2013
This code could serve as a solution for your example. I just presume that you fetch the list of 'direct' items substitutes from your database, so you could replace GetDirectSubstitutes with the code that fetches the substitutes list for the given item (I used you example array as a data...
c#,.net,add-in,microsoft-dynamics,dynamics-nav
The problem was in tutorials C# code. The NAV couldn't see my .dll because ControlAddInExport attribute and the whole interface were wrapped in "Class".
dynamics-nav,dynamics-nav-2013
They're there as translation comments. My friend Jan Hoek his written a nice blog post on this: http://mibuso.com/blogs/zenandtheartofcsidedevelopment/category/textconstants/. So 'help yourself' ;-)
web-services,dynamics-nav,dynamics-nav-2013
The client consuming a Nav web service has to be authenticated and mapped to a system user account, but it is possible to authenticate via the user name and the corresponding web service access key instead of the domain password. Common approach is to create a user account that is...
You can't sort data by totals using report properties. But you could do this manually. Just iterate through inventory lines and save grouped and totaled results to temporary table variable. Then create new dataitem with base table called "Integer" and use it to print out the results in sections. You...
javascript,html,internet-explorer,dynamics-nav,dynamics-nav-2013
I'm Sorry, currently there is no Support from NAV2013/R2 or NAV2015 for IE11. NAV 2013 Web Limitations R2: Supported: Internet Explorer 9 on Windows 7 and Windows Server 2008, and Internet Explorer 10 on Windows 7, Windows 8, Windows Server 2008, and Windows Server 2012 (32-bit or 64-bit editions). NAV...
In this question a guy states that that at least part of the key is a Base64 encoded string of the columns that make up the primary key so the first part of the key is some kind of salt or timestamp that is used to avoid overwriting record when...