Questions tagged [ax]

Microsoft Dynamics AX is one of Microsoft’s Enterprise Resource Planning software products. It is part of the Microsoft Dynamics family. The early versions (from 1.0 to 3.0) were called Axapta, while the later versions (from 3.0 SP6 to AX 2012) are called Dynamics AX.

Microsoft Dynamics AX is one of Microsoft’s Enterprise Resource Planning software products. It is part of the Microsoft Dynamics family.

The early versions (from 1.0 to 3.0) were called Axapta, while the later versions (from 3.0 SP6 to AX 2012) are called Dynamics AX.

Axapta was initially released in March 1998 in the Danish and U.S. markets. Today it is available and supported in forty-five languages in most of the world.

MorphX is the IDE where development and modification is done. It resided (until Dynamics AX 2012) in the same client application that a normal day-to-day user would access, thus allowing development to take place on any instance of the client.

X++ is the development language used in Dynamics AX. It belongs to the curly brackets and dot-operator class of programming languages (like C# or Java). It is an object-oriented, class-based, single dispatch language. X++ supports garbage collection and SQL queries is integrated in the language.

See also: "Microsoft Dynamics AX" article on Wikipedia

230 questions
11
votes
1 answer

Magento and Microsoft dynamics AX Integration

We are planning to integrate Magento with Microsoft AX 2009 (Product and Customers).Since I am a C# developer I am confused how to get started. On exploring I came to know that best way to integrate is through WCF. But I would like to know How do…
Jayaraj.K
  • 928
  • 9
  • 30
6
votes
2 answers

How to automatically resize the grid when the form is resized?

How to automatically resize grid or another child component when my form is resized?
stighy
  • 7,260
  • 25
  • 97
  • 157
6
votes
2 answers

Dynamics AX: Disable datasource from form in code while being able to use advanced filter/sort option

I've modified the InventTable form so the users can filter the items depending on their "Stopped" status on the default order settings setup form. They get a list of the "buyable" items, "sellable" items, all items or blocked items for sale or…
Adrià Ariste
  • 118
  • 2
  • 7
5
votes
3 answers

Try to use Winapi::findFirstFile running on server

I have a problem trying to run Winapi::findFirstFile running on server. I havve already tried copying the method on the class WinapiServer, and changing some lines, like this: server static container findFirstFile(str filename) { …
JOSEMI_24
  • 53
  • 1
  • 3
5
votes
1 answer

Table Update Event Handler

I am investigating the capabilities of the new delegate & event subscription pattern in AX 2012. At the moment I am looking to detect when a particular field has been modified, for example when SalesTable.SalesStatus is changed to…
AnthonyBlake
  • 2,334
  • 1
  • 25
  • 39
4
votes
3 answers

How can I find the last labelId in AX2009?

I'd like to insert all Labels from a labelModuleId in an AX2009 table. I have this job, that does nearly everything I need. But I have to enter the max Id (toLabel = 1000): static void OcShowAllLabel(Args _args) { xInfo xinfo; …
supertobi
  • 334
  • 2
  • 20
4
votes
2 answers

What is the algorithm for random numbers in X++? [AX]

What is the algorithm to have random reals using x++ in Dynamics AX?
Tassisto
  • 9,877
  • 28
  • 100
  • 157
4
votes
2 answers

Installation of AX 2012

I want to install Ax 2012 in my local machine. Does anyone know the steps involved in installing Ax2012
Tejashree S
  • 311
  • 1
  • 12
  • 27
4
votes
2 answers

Master/detail form in Axapta/Dynamics Ax

How do I create a master/detail form in Axapta/Dynamics Ax, with a master grid and a detail grid, where choosing a record in the master grid changes the content of the detail grid accordingly?
Enrico Detoma
  • 3,159
  • 3
  • 37
  • 53
4
votes
1 answer

In AX 2012, How to expose WCF service as REST

Right now i am exposing services from AX 2012, how to configure it to expose it as REST? I have to use this service in MAC Xcode for IOS integration, I believe its easy if it is a REST than SOAP.
3
votes
2 answers

How to get the form object in a ListPageInteraction class?

Working on Microsoft Dynamics AX 2012. I have a listpage form which has a referenced ListPageInteraction class, just wanted to change the label / caption of a few control. For this I need to do something…
maqk
  • 313
  • 2
  • 7
  • 18
3
votes
1 answer

How can I add more information to MS Dynamics 2009 AX's alert messages with X++?

Does anyone have some sample code or can direct me to which class I can modify to add more information to the alert messages in Dynamics AX (DAX). I want to for instance add a vendor number and userid when a name of a vendor has been changed. EDIT:…
Johan Bresler
  • 6,450
  • 11
  • 56
  • 77
3
votes
2 answers

How can I generate CIL from X++ in Dynamics AX 2012?

Is it possible to generate CIL (either incremental or full) from within X++ code or the command line? My problem is that I want to import a model or xpo into AX, and I need the CIL to be generated automatically. This is for automated testing we are…
Maxthecat
  • 1,250
  • 17
  • 37
3
votes
3 answers

Changing Default value of Checkbox in Ax2012

For a check box I am trying to set the default value to checked. I set the value in the properties to 1 Didn't appear checked by default. Restarted AOS, did Full compile and CIL generation. Still no luck. Any Ideas what I am missing?
Cjconry
  • 58
  • 1
  • 1
  • 6
3
votes
1 answer

How to keep ranges on form datasource when manually add filters?

I have a strange problem on form: I added a range to filter records in datasource executeQuery() method, this works fine when opening form but if I set manually a filter in the grid header, the range set in ExecuteQuery() method are not applied. My…
Thomas Post
  • 535
  • 2
  • 11
  • 27
1
2 3
15 16