Questions tagged [microsoft-dynamics-nav]

Microsoft Dynamics NAV (formerly known as Navision) is an ERP system that's part of Microsoft Dynamics

Microsoft Dynamics is a line of enterprise resource planning (ERP) and customer relationship management (CRM) software applications. Microsoft Dynamics applications are delivered through a network of reselling partners who provide specialized services.

Microsoft Dynamics NAV (formerly known as Navision) is one product in this product line.


Useful links


Related tags

99 questions
0
votes
1 answer

Integrate web client to local hardware

Let's assume we have an app which runs in browser (in my case it is web client for Dynamics Nav) and a hardware that is installed on user's local machine (cache register in my case). What would be the way to access local hardware from browser (even…
Mak Sim
  • 2,148
  • 19
  • 30
0
votes
1 answer

Microsoft Dynamics Nav Connector For Java

Currently I am working on implementing a connector for Microsoft Dynamics Nav in Java. For that I want to create a connection with Dynamics Nav server through NTLM. Most of the blogs and documentations I found regarding this are outdated. Connecting…
Yasas Gunarathne
  • 833
  • 1
  • 6
  • 19
0
votes
2 answers

NAV OData web service PUT is not successful

I am trying to use Navision OData restful web services to perform CRUD operations but I am having difficulty in PUT operation. { "@odata.context": "http://192.168.0.10:1148/DynamicsNAV100/ODataV4/$metadata#Collection(NAV.Customer2)", "@odata.etag":…
0
votes
1 answer

How to remove weekdays in duration data type NAV

How can i remove weekdays in the data type duration in CAL ? for example: duration := datetime2 - datetime1 But duration do contains Saturdays and Sundays. How can i remove them ?
0
votes
1 answer

Microsoft Dynamics Nav ReadMultiple sorting records by specific column

I use ReadMultiple function to retrieve filtered data from Navision service as below. var customers = postedInvService.ReadMultiple(filtercustomers.ToArray(), CustomerParams.bookmarkKey, -10); This works fine. But my requirement is to first sort…
user1220497
  • 311
  • 2
  • 4
  • 15
0
votes
1 answer

Is there a var_dump equivalent of php in navision development?

¿ Is there a var_dump equivalent of php in navision ? Like var_dump(RecRef); or var_dump(array); in Navision development thanks in advance
Tabutnas
  • 35
  • 6
0
votes
1 answer

Get title name of the column by RecRef

RecRef is datatype of RecRef, and by this i access to table and can select the field of the table; RecRef.OPEN(IDTABLE); RecRef.field(2); -> RETURN THE FIELD DATA OF THE IDTABLE. but now i want to take; Title name of the column and number of…
Tabutnas
  • 35
  • 6
0
votes
1 answer

Report performance optimization

How can I get only once signature picture from UserSetup in DataSet? DataItem Integer in the end doesn't work when I print two or more documents with different signatures.
0
votes
0 answers

Navision 2015 - Upload excel file to salary journal

I'm doing a integration from a third party system with Nav 2015, I need to export a excelsheet to Nav 2015. I know the nav format and excel sheet has been formatted the same way. We can do it via GUI but we have to automate it via web service or…
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…
0
votes
2 answers

Integrate Microsoft Dynamics NAV with third party app

I built web app by golang, and I want integrate it with Microsoft Dynamics NAV, and I don't know from where can start, Is there a way to integrate Microsoft Dynamics NAV by REST API, or any other methods?
0
votes
2 answers

Importing text object programmatically in navision 2009

I have a Research task of importing object in text file into Dynamics Navision 2009 using C#. I am not getting a single clue to do this. Please help me to find whether we can do it in Nav 2009 or not. If yes then How? In Nav 2013 we can import text…
0
votes
1 answer

How to connect to Microsoft Dynamic NAV 5.0?

I need to implement connection between Microsoft Dynamics AX, Microsoft Dynamics Navision 5.0 and external system via WCF Service. External System ---->WCF service ---> Axapta External System ---->WCF service ---> Navision 5.0 I've done with…
0
votes
2 answers

Dynamics NAV 2016 Web Service: Parameter * in method * in service * is null

I try to get a single contact from my Dynamics Nav Web Service (Dynamics Nav 2016). I do this with a SOAP-request in PHP. The web service is a codeunit which contains two functions: fGetContact(iContactNumber : Text[20]) oContact : Text[250] IF…
0
votes
3 answers

Microsoft Dynamics NAV 2009 How to remove objects outside of license?

During an upgrade process from 2009 to 2016 I'm trying to remove objects relating to an old discontinued product. The objects are not within the range of or license and consists of both Forms, Tables and Reports. When deleting I'm faced with the…