Menu
  • HOME
  • TAGS

Integration Salesforce with Dynamics NAV 2009/2015

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....

How to recursively build a list of Item Substitutions when multiple substitutes exist

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...

Dynamics NAV Control Add-in not found

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".

What does @@@ mean in Dynamics-NAV Text Constants

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' ;-)

Dynamics Nav 2013 web service without authorization

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...

Navision 5.0 Report Sort TotalFields

dynamics-nav,navision

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...

Dynamics Nav Control Add-in supported internet explorer

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...

Can I use the Key field in NAV table records the way I want to in an XMLPort?

web-services,dynamics-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...