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
2
votes
2 answers

Dynamics Nav (Navision) webservice ReadMultiple date filter

Using the Navision webservices, how can you filter by a date. i.e. Within a SalesHeader table there is an "ExportedDate". I would like to find all SalesHeaders where the ExportedDate has not been set or were exported on a particular date. It seems…
Billy
  • 21
  • 1
  • 3
2
votes
1 answer

Error with upgrade codeunit when changing table's PK length

I have table A-Z. Table A has PK of ID, and all other tables has fields that relates to TableA's ID. I'm being tasked to do code cleanup, and I need to change the TableA's ID from length 30 to 20. I have done for other table B-Z, together with the…
Farid
  • 872
  • 1
  • 13
  • 30
2
votes
1 answer

How to change user department in Navision 2009 (role tailored)

How can i change users deparments in Microsoft Dynamics NAV RoleTailored Client, say i want to put myself in the [Purchase] department. Please help.
Zee99
  • 1,194
  • 2
  • 23
  • 46
2
votes
1 answer

Web service call method with array of objects

I call a method of a web service taking as parameter an class that contains an array of objects. Inquiry obj = new Inquiry { Items = new Test.Items[] { new Test.Items{ Id="1"}, new Test.Items{ Id="2"}, new…
albert
  • 1,493
  • 1
  • 15
  • 33
2
votes
2 answers

MS Dynamics NAV - development licensing basics

I am a newbie self-learning NAV. Some of queries may be foolish ones, hoping to hear from you genius experts! Really confused with licensing framework. Queries, I can identify two types of licenses - Customer license vs Partner license. Customer…
EagerToLearn
  • 827
  • 2
  • 14
  • 24
2
votes
3 answers

How Swift consume SOAP WebService from Dynamics NAVISION

in XCode (for iOS 8) using Swift language, there is no Service Reference folder to add for NAV Web Service Understand iOS 8 (Swift) does not have Web service reference to create Proxy. So, in this respect, how Swift can consume SOAP webservice from…
MilkBottle
  • 4,242
  • 13
  • 64
  • 146
2
votes
1 answer

What does @@@ mean in Dynamics-NAV Text Constants

I have noticed that in Dynamics NAV 2013 that some TextConsts have started using @@@ as the language code. For example in Codeunit 12: PurchaseAlreadyExistsErr@1003 : TextConst '@@@="%1 = Document Type; What does @@@ mean in this context?
Steve
  • 2,205
  • 1
  • 21
  • 28
2
votes
3 answers

How to manage MS Dynamics NAV C/AL Codes in TFS with versioning

I need to keep all MS Dynamics NAV development codes in TFS, currently I export NAV objects in FOB/TXT format and add these to TFS. But I am not able to leverage the advantages of TFS, like versioning, check-in, check-out process etc., so its…
kishorebarik
  • 99
  • 3
  • 15
2
votes
0 answers

Security concerns with rawurldecode in Codeigniter and SOAP webservice

We are using a Microsoft Dynamics NAV SOAP webservice to fetch some product information for a webshop, to fetch it we'll send along parameters such as Brand, Type and Modelnumber These parameters vary alot in characters, the strings could look like…
nielsstampe
  • 1,336
  • 1
  • 15
  • 25
2
votes
1 answer

Dynamics nav 2009 RE: SoapException: Standard Item Code 'foo' does not exist

I am trying to create purchase invoice: PurchseInvoice_Service pis = new PurchseInvoice_Service(); PurchseInvoice pi = new PurchseInvoice(); pis.Create(ref pi); pi.Buy_from_Vendor_No = "40000"; pi.Currency_Code = "EUR"; pi.Location_Code =…
vt100
  • 923
  • 1
  • 11
  • 21
2
votes
1 answer

navision testing environment

I have a long experience in programming C#. I have used navision 2009 years ago as an end user. Now I would like to refresh my programming skill by starting coding with Navision 2009 or Navision 2013. From what I have seen I need the development…
user730712
  • 106
  • 1
  • 6
2
votes
1 answer

How to show a Unicode character in RDLC Microsoft Dynamic NAV 2013 report?

I added a textbox in RDLC report and set value of it to unicode character. but when I run report, I got only ????? sign. Please help me to solve this problem. I wish to see the unicode character in report
Makara
  • 233
  • 1
  • 8
  • 23
2
votes
2 answers

inverse boolean Navision

Is there a more easy way to inverse a boolean instead of using a IF ELSE construction? Normally I would use the ! infront of a boolean value. But that doesn't do the trick in Navision
Martiveen
  • 45
  • 5
2
votes
3 answers

Navision How to Convert a Text to Option

I have a text variable which I want to convert into a option and set table data with it. How do it convert the variable into a option? Thanks
Florian
  • 1,827
  • 4
  • 30
  • 62
2
votes
1 answer

Is there any ways to change color of label in RTC?

In the form, I would like to set the color of text in Label. Actually I can set it in Classic by using Label property called "FORECOLOR". but unfortunately in RTC doesn't change the color. Are there any ways to do so in RTC ? Thanks in…
Makara
  • 233
  • 1
  • 8
  • 23