Questions tagged [dynamics-nav-2013]

Dynamics NAV is an enterprise resource planning (ERP) development platform produced by Microsoft. Use this tag for issues that are specific for Dynamics NAV 2013.

Dynamics NAV, formerly Navision, is an enterprise resource planning (ERP) development platform produced by Microsoft.

This tag is specific for issues related Microsoft Dynamics 2013. For more general issues related to Microsoft Dynamics use tag .


Useful links


Related tags

32 questions
3
votes
1 answer

SOAP uses different datetime format

In Dynamics Nav (2013) I have a codeunit that is accessible with the soap services to run a XML port. If I enter in the proper URI for this codeunit to run the port, the XML data is imported OK. Also if I just run the XMLPORT.IMPORT function from in…
Ryan Erb
  • 828
  • 1
  • 8
  • 28
3
votes
1 answer

Realtime Interfacing with Dynamics NAV via Webservices

I want to write a .NET application that will interface in realtime with Dynamics NAV 2009 and 2013. The application will have to read and update entities such as customers and stock items. Using the provided webservices seem to be the best…
2
votes
1 answer

Pass Record variable to .NET library

Is there a way to pass variable of Record (or RecordRef) type as a parameter to method of .NET object?
Mak Sim
  • 2,148
  • 19
  • 30
2
votes
1 answer

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

I have noticed that in Dynamics NAV 2013 that some TextConsts have started using @@@ as the language code. For example in Codeunit 12: PurchaseAlreadyExistsErr@1003 : TextConst '@@@="%1 = Document Type; What does @@@ mean in this context?
Steve
  • 2,205
  • 1
  • 21
  • 28
1
vote
1 answer

The service principal name (delegation) configuration has been set incorrectly (Ms Dynamics NAV)

I am getting this error on client computers when they try to open Ms Dynamics Nav. I have read some of the suggestions online and from what i have gathered, I am suspecting that the Ms Dynamics server might be encountering the "The trust…
1
vote
2 answers

Azure as a proxy for application

We need to develop integration between ERP (Dynamics Nav) and cloud-based telephony provider. The provider needs to have an endpoint published and accessible from internet but for security reasons it is not possible for us to allow inbound…
Mak Sim
  • 2,148
  • 19
  • 30
1
vote
1 answer

Make list image bigger in Dynamics Nav 2013

I would like to make image bigger on an item list in Dynamics Nav 2013. What I could do so far is fetch the image and display it on the list. To achieve this I call SearchImage function on OnAfterGetRecord…
Arno 2501
  • 8,921
  • 8
  • 37
  • 55
1
vote
2 answers

Dynamics Nav Control Add-in supported internet explorer

I want to use the webgl in my add-in, so I need the IE 11 support. I've found that in temporary add-in's files (which are creating when the RTC client is starting) is line: which…
1
vote
1 answer

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

In Microsoft Dynamics Nav 2013, there is a feature for specifying Item Substitutions for an item (product); However, you can specify more than one substitution for a single product and technically a substitution can itself have one or more…
sdaugherty
  • 258
  • 2
  • 13
1
vote
1 answer

Dynamics Nav 2013 web application

I want to create web application (sth like dashboard) which will be integrated with nav 2013. (Take data form Nav, display it to customers and also can update or insert data). In Nav I have done all tables and pages which have specificed all…
1
vote
2 answers

Access Dynamics NAV Webservice with Java

I am trying to access a Dynamics NAV 2013 R2 web service from Java. The web service is running and when I enter the URL in the Internet Explorer, I can see the WSDL but first I am prompted for Username and Password. On Wireshark I can see that it…
lanoxx
  • 12,249
  • 13
  • 87
  • 142
1
vote
2 answers

Consuming Dynamics NAV oData webservice using jQuery cross domain

My setup is like this, both servers are in different domains. SharePoint Foundation 2013 with an HTML/JavaScript app, hosted on Office365 by Microsoft. Windows Server 2012 with Dynamics NAV 2013, hosted on Azure by Microsoft. What I like to do is…
0
votes
1 answer

How to use or filters

I am facing an issue with dynamics nav 2013 r2. I am trying to create a filter using the OR condition. So let me explain the issue. First of all there is no way to create filters with or thus if you are searching a term it has to be available in…
Combinu
  • 882
  • 2
  • 10
  • 31
0
votes
1 answer

Use function from powershell cmdlet dll

Is it possible to add DLL that implements PowerShell cmdlet to C# project and call its functions as you normally do with classes? The problem is that cmdlet doesn't have suitable functions to call. It has invoke and other stuff instead. As far as I…
Mak Sim
  • 2,148
  • 19
  • 30
0
votes
1 answer

Can I reference a field by name using a variable?

I can get a value from a .net data table that has columns named "Col1" and "Col2" like this: DataTable dt = new DataTable() // some more code that fills it Console.Writeline("{0}, {1}", dt.Rows[0]["Col1"], dt.Rows[0]["Col2"]); I could also use a…
1
2 3