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
6
votes
0 answers

Date format for MS Dynamics NAV web services with PHP

I have tried 2 to 3 possibilities of date formats for the "Start_Date" like 30-05-2018 05-30-2018 30/05/2018 but I am getting the response as The value "30-05-2018" can't be evaluated into type Date. The below is my function public function…
4
votes
1 answer

Consume OData Service from Visual Studio 2017

I've a issue consuming Dynamics Nav OData. I'm using Visual Studio Community 2017 (version 15.9.0), and I've installed the extension OData Connected Service (Official Microsoft Extension)1. This is my Odata…
ATellez
  • 115
  • 1
  • 11
3
votes
1 answer

Ms Dynamics Nav Multi Language with PHP

public function productDetails($product_code){ $url = 'Page/ProductGroups'; try { $client = $this->initClient($url); // $filter = ['Field' => 'Product_Group_Code', 'Criteria' => $product_code]; $result =…
3
votes
2 answers

Create product in Microsoft Dynamics 365 for Financials

I try to create a product (item) using OData V4 URL available in Web Services section in Microsoft Dynamics 365 for Financials as shown below. I use Postman to execute the POST request. Each request is proceed with an authenticated and valid…
3
votes
1 answer

What are Dynamics NAV licensing requirements for Web Services?

This post refers to SOAP and OData Web Services in Dynamics NAV 2016 (or later) and hopefully it is not off-topic. I would like to know whether the following facts are true or false (or it depends). Given Starter Pack functionality, and default…
2
votes
0 answers

Creating both sales header and sales lines in one call i NAV OData REST API

What we want to do We want to create both a sales header and the corresponding sales lines in one API call. How we're trying to do it To do this we're trying to do a deep insert as specified in the OData spec. Example POST…
Jacob Rastad
  • 1,153
  • 10
  • 24
2
votes
1 answer

Is possible do Select * form DynamicValue to perform a query like this in Navision?

Is possible do Select * form DynamicValue to perform a query like this in Navision? Thanks in advance
Tabutnas
  • 35
  • 6
2
votes
2 answers

How much time will it take to develop MS Dynamics NAV integration using XML files

I got new assignment in my workplace to integrate NAV 4.0 system with third party system using XML files. Integration will be based on XML file creation and storage of those files in predefined directories (i.e. it has to be a non-web-service…
1
vote
1 answer

How can I loop only the page records from the selected one to the latest?

I'm trying to loop all records displayed in a page, from the selected one to the end of the rows: For example here, as I'm selecting only the 5th row it will loop through 5th and 6th row (as there are no more rows below) What I've been trying is…
1
vote
1 answer

Test Automation in business central

I am trying to create a test automation project for my business central app (version 21). But I am unable to reference test libraries in the project. I followed the manual, installed business central ver.21 sandbox on docker, however I am unable to…
1
vote
1 answer

The HTTP request is unauthorized with client authentication scheme 'Anonymous' Dynamics NAV

I have an issue regarding an .net core app (3.1) trying to consume a WS (SOAP) from a Dynamics Nav Server. (on-premise). When I'm in debugging mode everything works fine, but when I deployed the app to local IIS server I keep getting "The HTTP…
1
vote
1 answer

Call COM Add-In Function in VBA

I want to call the "Refresh" function of the Microsoft Dynamics NAV Excel Add-in which has a button on the ribbon using VBA. I tried recording a macro when clicking the button but the code does not work and throws a runtime error due to the…
1
vote
0 answers

Connecting to Microsoft Dynamics NAV using Python

I have a project where I need to pull data from an NAV server, I found only this https://www.cdata.com/drivers/dynamicsnav/python/ for reference. I also somewhere this snippet but was unable to use it. import pandas import matplotlib.pyplot as…
1
vote
2 answers

Adding a Tracking Spec Line through AL Code?

I am trying to add Tracking Spec entry through code; rec_trackingspec.init(); if rec_trackingspec2.FindLast() then …
1
vote
1 answer

Consume NAV Soap web service in java

Any Lead for consuming Microsoft dyanmics NAV web service.Client has given us a WSDL file in XML format and we need to consume it in java/spring boot.
Nishant Varshney
  • 685
  • 2
  • 14
  • 34
1
2 3 4 5 6 7