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
1
vote
1 answer

Error to consume automation variable Dynamics 365 Business Central

I create an automation variable in Dynamics 365 Business Central On Premise. This code work fine the first time but then an error apear. Code: EVALUATE(_PC, PCStr); CREATE(_Export, TRUE, TRUE); _Export.process(_PC);
JMarR
  • 55
  • 7
1
vote
2 answers

How to take user input using C/AL in NAV 2016?

Suppose I want to write a simple addition program using C/AL in NAV 2016. How can I dynamically ask user to enter the two numbers? In Microsoft Dynamics AX we use "dialog" class for this purpose. I need some code reference or the description to…
1
vote
2 answers

Authentication for NAV Web Services with Windows User over HTTP Basic Authentication

I have a NAV instance which exposes (OData) Web Services and is configured to use Windows as the credential type. I am able to authenticate against these Web Services successfully with NTLM. However, I would prefer to use HTTP basic authentication…
1
vote
2 answers

Lookup all Navision Objects

I want to make a field to lookup all NAvision objects or specific objects(e.g all codeunits or Pages etc). but i dont know how to achieve this.
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
1 answer

Customize SQL Server Report Builder Wizard

I'm a new NAV dev and currently learning how to generate reports. Everything works, but I always end up having to do the exact same steps over and over. What I am wanting to do, is create a custom template for the wizard that already has some things…
1
vote
1 answer

How to check recref.field(Integer) is empty or exists in Navision Development ( C/ALL )?

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 if this is empty navision send error so; How to check if…
Tabutnas
  • 35
  • 6
1
vote
1 answer

fixing and understanding an error in a very simple Navision dataport

Can someone please tell me why my code would error out on CU 5402 UOM Mgmt, specifically at the Item.Testfield("No.) line under GetQtyPerUnitofMeasure function? Below is my code to import 6 columns of data:…
1
vote
1 answer

Decimal separator Navision Xmlport

Is it possible to force any numerical value exported from an xmlport to a certain custom format, regardless of regional settings? For example, 120.25 (US) will export as 120,25?
WSNoob
  • 33
  • 8
1
vote
0 answers

How can I select only certain columns in Microsoft Dynamics Nav 2016 Web Services w/PHP?

I'm using PHP to connect to Microsoft Dynamics Nav (Navision) Web Services 2016. Authentication (NTLM) is working fine, and I can get data. So far I'm testing the Item page and the Item List page. I can easily filter which items I want to retrieve,…
Mike Willis
  • 1,493
  • 15
  • 30
1
vote
1 answer

Check if startdate is greater then enddate

I want to compare two dates. I triied like this: SetDates(Rec, StartDate2, EndDate2, Regelkorting); BOMB.RESET; BOMB.SETRANGE(StartDate2,StartDate2); IF BOMB.FINDFIRST THEN BEGIN IF BOMB.StartDate2 > BOMB.EndDate2 THEN BEGIN ERROR('startdatum kan…
SavantCode
  • 131
  • 2
  • 4
  • 14
1
vote
2 answers

Dynamics NAV SQL Lead Time format conversion

I have a small issue getting data, one field in particular, from table replicated from Microsoft Dynamics NAV. There is a field storing lead time in strange format and as a newbie I thought to ask smarter from me for advice. There is a number…
1
vote
0 answers

Does IMDF supersede DynamicsPerf for performance monitoring?

I need to troubleshoot poor performance issues in Dynamics 2012. Per TechNet article, it lists four options, here are two of them: • Performance Analyzer for Microsoft Dynamics AX (DynamicsPerf) – DynamicsPerf can be used to collect information…
1
vote
1 answer

SETFILTER - is not equal to (<>) not working NAV 90

I have been trying to make use of setfilter but it seems not working FOR i := 1 TO ARRAYLEN(ItemGroupFilter) DO BEGIN IF i <> ARRAYLEN(ItemGroupFilter) THEN BEGIN IF ItemGroupFilter[i] <> '' THEN IF ItemGroupString = '' THEN …
Jonathan Lam
  • 1,237
  • 3
  • 20
  • 49
0
votes
0 answers

System.ServiceModel.Security.MessageSecurityException: The HTTP request is unauthorized with client authentication scheme 'Negotiate'

We are trying to connect to Microsoft Dynamics from our Azure App Service (Linux) using Windows authentications. We are getting the issue below even though the same configuration was working well when connecting from Azure Windows…