Questions tagged [navision]

Navision is the former name of Dynamics NAV, an enterprise resource planning (ERP) development platform produced by Microsoft.

Navision is the former name of Dynamics NAV, an enterprise resource planning (ERP) development platform produced by Microsoft.

Dynamics NAV uses a proprietary programming language called C/AL, which is syntactically similar to Pascal. The C/AL runtime provides constructs for interacting with database records, files and the host environment. Runtime functionality can be extended using COM and .NET.

The early versions (from 3, 4 to 2009) were called Navision, while the later versions (from 2013 to 2017) are called Dynamics NAV.


Useful links


Related tags

427 questions
0
votes
1 answer

Detection of problems in execution of 3rd party code. (NAS jobs)

I am trying to figure out one problem, but I am struggling to find a viable solution. The issue is probably more about theory then about implementation. I simply need some other points of view. The problem is: We are using Navision Application…
0
votes
1 answer

Always display two digits after decimal separator navision

I'm using Microsoft Navision 2009. I'm creating report that includes several number with decimal separator (double/float number in C#). I'm stuck at the point where I want to display every number with two digits after decimal point. Ex: if number is…
bpavlov
  • 1,080
  • 12
  • 32
0
votes
1 answer

NAV Web Service how to update data via C#?

so bear with me if I'm doing anything wrong. i have been trying to update some data in Nav from C#, but whatever i do i get errors: my code Unit looks like this, this is my method i need to use to update:
Troels Thisted
  • 76
  • 1
  • 16
0
votes
2 answers

Dynamics Nav 2013 View Database Table during debugging session

Is it possible to view the contents of a Dynamics NAV 2013 Database Table while being in a debugging session? When I go the development environment I can normally hit run on any table and explore its contents. How ever, while the debugger is…
lanoxx
  • 12,249
  • 13
  • 87
  • 142
0
votes
1 answer

XMLport Table Attributes

XMLport objects in NAV appear to support table attributes (i.e. Node Type = Attribute, Source Type = Table). However, when I try to save an XMLport containing a table attribute node in NAV 2013, I get this error message: The SourceType Table for Tag…
Jan Hoek
  • 702
  • 5
  • 13
0
votes
2 answers

Import and Export To NAVision

I have to assign a task to a team member to programatically write data to Microsoft NAVision and also read from it. Specifically we will be writing data that is in one of our systems into the customers NAVision financials module, and this will be…
0
votes
2 answers

Use view in report

I have created a view in SQL Server. I'd like to use this view to create a report in Microsoft Dynamics NAV 2009. Is this possible and if so, how can I use the view? Thanks
Bv202
  • 3,924
  • 13
  • 46
  • 80
0
votes
1 answer

Time Scheduling in Navision with Timer

I am facing some problem regarding running an object , can be form,report etc, automatically depending on the user defined time. Let us say at 6am everyday, a process report should run automatically. How can i achieve this?
pungggi
  • 1,263
  • 14
  • 25
0
votes
1 answer

OData Webservice returns:Resource not found for the segment

I have a strange behaviour on my testmachine.. seems like the nav service for the webserivices im testing is "broken"... the Request returns Resource not found for the segment [WSName] ... Seems like a WCF-Error. It came up after i was editing a…
pungggi
  • 1,263
  • 14
  • 25
0
votes
2 answers

Navision 2009 R2: nav users, roles and sql application roles

I see Navision uses SQL application roles to manage user permissions to select, insert, delete data in its tables. I see that for each navision user, exists a SQL database user with the same name. Relation between nav roles and sql aplication roles…
Eduard
  • 664
  • 2
  • 14
  • 26
0
votes
1 answer

Calculate Key for WebService Update from Sql Query in Navision 2009

I am exposing some Pages in Navision 2009 as web services. To update a record, you have to issue a Read request, and send the Key field along with your Update request. I would rather calculate the Key myself for 2 reasons: Using the filters in the…
João Bragança
  • 1,353
  • 1
  • 13
  • 29
0
votes
2 answers

Access to Navision codeunit via web service (xml)

I try to access the Navision 2009 R2 web service by generating a SOAP message from C#. I get the response only if the codeunit's function I call has no parameters. Example for codeunit RunJob function Test (no parameters, returns a hardcoded…
user1390456
  • 96
  • 1
  • 8
0
votes
2 answers

How to make a transaction flow from Navision to a C# component registered for COM interop?

In my context I have Navision involved, but perhaps this is related to every COM interop scenario, I don't know. Anyway, the situation: - I've a simple C# component registered for COM Interop - I call it from Navision, just before inserting a new…
MatteoSp
  • 2,940
  • 5
  • 28
  • 36
0
votes
1 answer

Issue with .NET Framework on Navision 2009R2

i'm creating a ControlAddIn for Navision 2009R2 in c# with Visual Studio 2010. There I have to use the .NET 3.5 Framework because Navision can't use higher versions of the .NET framwork. The problem is that I have a dll which is based on .NET…
Teddy
  • 3
  • 4
0
votes
1 answer

Convert a Navision Filter to SQL where

I have a field in table in next format 1_2..1_10|1_6|1_8| where 1_2..1_10 include 1_2, 1_3 and other. How I can select data, where number = 1_3?
user1927944