Questions tagged [dynamics-ax-2009]

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 R3) are called Dynamics AX.

Microsoft Dynamics AX was originally developed as a collaboration between IBM and Danish Damgaard Data as IBM Axapta. 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.

Se also Wikipidia article.

594 questions
0
votes
1 answer

Dynamics AX 2009 - Modify insert into smmActivities from ProjTableWizard?

I am an AX newbie, and I need to make a modification to the ProjTableWizard form code and have not been able to locate where I need to make the change. Essentially what I need to do is modify the part of the Wizard process when creating a…
core
  • 1
  • 1
0
votes
1 answer

Iterate through selected grid data and get field values of n-th datasource

I want to loop through the selected lines on a grid and get the field-data of each line, which is from a second/third datasource linked to the first datasource via inner join. Looping through selected lines and get data of first DS is quite easy,…
Nico
  • 1,175
  • 15
  • 33
0
votes
1 answer

How to programmatically link Field in Enterprise Portal AX 2009 to open a specifical File

I'm a new beginner in Microsoft AX. I have a problem in AX 2009. I create a Table ImportFile with 2 Fields,("FileName-->Typ:String", "FileDocuValue-->Typ:Container"). When the User import a CSV-File it will be save in the Table ImportFile. Now in…
0
votes
1 answer

AX2012-CRM 2011 Integratoin

we are integrating CRM 2011 to AX2012. The problem is that our AX implementation has 8 companies and on CRM side we have different business unit. The connector will run and get all the data to each company and hence duplicating the information. How…
0
votes
2 answers

display method in grid is showing the same text in all rows

I have a very simple display method on a table to display the weekday of a given date: display DateDayName day() { WeekDays weekday; ; weekday = dayofwk(this.TransDate); return enum2str(weekday); } but for some reason when I use…
NMKloster
  • 73
  • 1
  • 10
0
votes
1 answer

How to get Catch weight concept in Ax 2009

Is there Catch Weight concept in Axapta 2009 as it is in Axapta 2012 ? If not how to achieve same in AX 2009. Is there any work around ? Please Help :)
Vikas
  • 50
  • 10
0
votes
1 answer

HTML Printing generates empty zero-width columns

I am attempting to find out what is causing certain (MorphX) reports within our AX 2009 environment to print with extra blank zero-width columns. The appearance of these columns seems to occur over time, and do not seem to be tied to any changes…
kingofzeal
  • 1,359
  • 3
  • 12
  • 24
0
votes
1 answer

Integrate MS Dynamics AX with Play Framework

In my company we use MS Dynamics AX 2009. We have around 100 users. The servers of MS Dynamics AX are in the headquarters company. We are developping a new website using Play Framework and Scala language. However, the website server isn't in the…
0
votes
1 answer

How to consume a Dynamics AX webservice in an external asp.net application

http://clientdomain.com/MicrosoftDynamicsAXAif50/inventitemgroupservice.svc I don't Know any thing about the data that this service is going to give me. I just had this service. Can any one tell me what is the approach I need to take with this…
None
  • 5,582
  • 21
  • 85
  • 170
0
votes
1 answer

Ax2009 printing from AOS

How is it possible to hide printers that are locally installed on the AOS server for specific users for a AX client that is hosted using terminal services? It still needs to be possible to print to the printers from the AOS while setting up print…
user3660338
  • 296
  • 5
  • 23
0
votes
1 answer

Table for all companies

I need my conversion table (we integrate data from other system where their values mean another thing in our AX instance) to be encompassing all companies. When I deploy the project, I'll upload that table's data through an Excel import but I don't…
Francis Ducharme
  • 4,848
  • 6
  • 43
  • 81
0
votes
1 answer

Enabling AIF web services

I'm trying to set up AIF web services on an instance of an AOS. Once I'm done with the AIF Web Service component installation, I'm not seeing any .asmx/.svc or otherwise that would provide a WSDL to consume AIF web services. Is there something I'm…
Francis Ducharme
  • 4,848
  • 6
  • 43
  • 81
0
votes
1 answer

How to add an extra row to a custom lookup query?

I created a custom lookup on the ProdBom table and it just displays the BOM items for a given production order so that a user can select only items listed on the BOM. I also want them to be able to select the produced BOM item (ProdTable.ItemId) in…
William YK
  • 1,025
  • 12
  • 26
0
votes
0 answers

Allow Crosscompany selection only for one of two datasources in a form

I have a form with two datasources (say DS1, DS2), both inner joined, and now I want only DS1 to select data crosscompany, but not DS2, is that possible? I have already tried turning CrossCompanyAutoQuery to true, and also turning on the…
0
votes
1 answer

Button text on multiple lines AX2009

Is it possible to make the text for a button span two lines instead of just one on a form? I have already tried inserting a line break (\n) in the text for a button, but that did not work, also when done from the code. This is in AX2009
user3660338
  • 296
  • 5
  • 23