Questions tagged [dynamics-nav]

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

Dynamics NAV, formerly Navision, is 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.


Useful links


Version-specific tags


Other related tags

371 questions
1
vote
1 answer

How do I pass an array as a method result to Microsoft NAV?

As part of our software business, we offer a development kit for developers to integrate our software into theirs. We generally try to cater to many different languages/environments. Recently, we've been getting some inquiries from some potential…
Rami Abulhusn
  • 123
  • 1
  • 8
1
vote
1 answer

Error occur when run RTC page contains add-in control

I was following the walking through of Microsoft on "Creating and Using a RoleTailored Client Control Add-in". All steps are completed , but when I ran the form (customer card), there is an error : "The page contains a control add-in that is not…
Makara
  • 233
  • 1
  • 8
  • 23
1
vote
1 answer

SQL Server 2005 - SQL Statement to remove clustered keys from tables based on a query on tablenames?

I am trying to restore a backup of a Microsoft Dynamics NAV database, which unfortunately fails as it tries to set a CLUSTERED KEY for the tables which already have clustered keys. In NAV, every company in the database gets its own copy of the…
Martin C.
  • 12,140
  • 7
  • 40
  • 52
1
vote
3 answers

Why can I not compile an object in Dynamics NAV containing an OCX?

I imported a Form object from a text file. When I try to compile it I get the following error message: This message is for C/AL programmers: The OLE control or Automation Server identified by 'Microsoft Common Dialog Control 6.0…
Pascal
  • 125
  • 1
  • 15
1
vote
3 answers

How to disable Choose Column menu in Ms. Dynamic Nav 2009

In RoleTailored Client (RTC) in Microsoft Dynamics NAV 2009, User can add column in the list of Order by right click on list => Choose Column . I just to disable Choose Column context menu So that user can't perform that function. how could I do…
Makara
  • 233
  • 1
  • 8
  • 23
1
vote
2 answers

Split text file using Unix utilities, like grep and sed

I'm new to Unix utilities, but trying to learn something new and trying switch my simple ruby script to some kind shell script doing the same thing. But I don't know how to approach this task. I need to split one big file containing several small…
shytikov
  • 9,155
  • 8
  • 56
  • 103
1
vote
2 answers

how to retrieve a value from "Purchase Line"."Shortcut Dimension 2 Code" in Ms. Dynamic NAV?

I just create a Global Variable in Ms. Dynamic Nav 2009 R2 and I set its datatype to RECORD and select a specific table(Purchase Line). After that I add a Textbox to Classic Report and set its SourceExpr : "Purchase Line"."Shortcut Dimension 2…
Makara
  • 233
  • 1
  • 8
  • 23
1
vote
1 answer

How to use CreateCompletedEventHandler with the web service

I am using a web service connection to my company's test NAV environment (NAV 2013). I need to add a customer to the NAv environment. So for I have been able to make this code work: var customerService = new CustomerService.Customer_Service() …
Ben Hoffman
  • 8,149
  • 8
  • 44
  • 71
1
vote
3 answers

Dynamics Nav Company Web Service

Here is the Microsoft Dynamics NAV Web Services from msdn. But I can only call http://:/ and http://://ws/SystemService and…
Phoenix Kyaw
  • 332
  • 1
  • 5
  • 17
1
vote
1 answer

Coldfusion consume Dynamics NAV Webservice

I am trying to consume a Dynamics NAV web service from within Coldfusion. However it fails with this message: ... {http://xml.apache.org/axis/}HttpErrorCode:401 ... I have tested the same web service from within a C# project and this works like…
Roeland
  • 820
  • 1
  • 9
  • 33
1
vote
1 answer

Android SOAP NTLM example?

I've tried to google around for a working example. I've tried KSOAP2 and JCIFS examples but no success. The web service i'm trying to connect is 3rd parties (Microsoft Dynamics NAV) and can't be modified. It uses SOAP and either SPNEGO or NTLM…
Artūrs G.
  • 11
  • 1
0
votes
2 answers

Automatic generate a sales order line for every sales order

Im experimenting with Dynamics Nav 2009. Is there a way to automatically insert a sales line every time I make a new sales order? I want postage to be included everytime Im making a new sales order.
Roi84
  • 99
  • 1
  • 2
  • 6
0
votes
1 answer

Entity Framework and a Dynamics NAV database

I'm currently working on an Intranet application project, using ASP.NET MVC 3. One of the primary requirements is that all data created with the application must be available in the clients' ERP software as well; they work with MS Dynamics NAV.…
0
votes
1 answer

Is it possible to use SAML for the WebClient of Dynamics NAV 2017?

My Company is using Microsoft Dynamics NAV 2017 and is preparing to switch to BC in a few years (what ever that means). For now we still want to put in some work in Nav2017. Here I was asked to setup the WebClient and use SAML for authentication. I…
Yami
  • 3
  • 1
0
votes
2 answers

MinValue/MaxValue based on a Global Variable

In Business Central it's possible to make something like that: } field(5; "From"; Integer) { Caption = 'From'; DataClassification = SystemMetadata; Editable = FromEditbale } } var FromEditable: Boolean So…