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

Import Items into Ax with X++ Code

I was importing items into Microsoft Dynamics AX 2009 using the following job static void ItemsImport(Args _args) { InventTable InventTable; container c; TextIo …
Mechri
  • 17
  • 1
  • 3
0
votes
1 answer

How to deploy the default cubes in dynamics ax 2009?

How do we deploy the default cubes in dynamics ax 2009? what are the steps in deploying the default cubes? can someone provide a link for the steps? thanks,
michiboi
  • 65
  • 1
  • 8
0
votes
1 answer

Poduction Order Error

when I start the production order http://www.hostingpics.net/viewer.php?id=650344311.png I get an error http://www.hostingpics.net/viewer.php?id=780294952.png I did not understand the error !
Mechri
  • 17
  • 1
  • 3
0
votes
1 answer

Dynamics AX AIF webservice error "inventory dimension Warehouse is mandatory..."

I get this error in AX when I attempt to send a particular quote to AX via php: Inventory dimension Warehouse is mandatory and must consequently be specified. This is the offending block as far as I can determine: ... $line->InventDim = array(); …
user4686409
0
votes
1 answer

set customer on a production order

when I create a production order I want to add a combobox that contain the list of customer the goal is to choose the production order for any customer please how can I do it
Mechri
  • 17
  • 1
  • 3
0
votes
1 answer

How can the value of the "Quantity" field in bill of material lines be copied to the field "Height" during data entry?

When editing bill of material (BOM) lines, the value of field "Quantity" should be copied to field "Height". How can this be achieved? See also the following two…
Mechri
  • 17
  • 1
  • 3
0
votes
1 answer

How can the invoice round off amount be shown in the purchase register report for only one of the invoice lines?

In the purchase register report, I'm displaying all the invoice lines. I have included one column called Roundoff (invoice round off amount). This column is based on a display method. Currently the round off amount is displayed for each invoice…
0
votes
1 answer

how to set autosum property in x++ for a morphx report

I have the following code in the init() of a report: QueryBuildDataSource qbdsTable; QueryOrderByField QueryOrderByFieldTransDate; QueryOrderByField QueryOrderByFieldDimZone QueryOrderByField …
Alex
  • 78
  • 1
  • 1
  • 7
0
votes
1 answer

How do I create my own custom Roles for Reporting against SSAS and associate it with a role in Dynamics AX?

Dynamics AX comes with 25 predefined roles in the Default Analysis Database. How do I create my own and associate this new Role with a Role within Dynamics AX? I know the create Role wizard in SQL Server Management Studio, but I don't know how to…
0
votes
0 answers

AX2009 AIF web services not success using SoapUi

I am getting an error trying to connect a AX web service using SoapUi. In IIS web server this specific web service is successfully browsed. On the web.config file I am using not windows authentication but wsHttpBinding binding. I followed up so many…
0
votes
1 answer

How to integrate a COM object in Dynamics Ax 2009 on server side?

I have a .NET 4.0 dll that I would like to integrate to Dynamics Ax 2009 on server side. In client side (RunOn: client), it works fine with a 32 bit dll. But on server side (RunOn:server), it doesn't work. Here is what I do: (1) I copy an instance…
0
votes
1 answer

Use Excel to Export clipboard function

I try to replace the 'Export to Excel' function with a 'Export to OpenOffice' function. Pasting data of the clipboard to OpenOffice already works. I would like to use the code of the 'Export to Excel' function which copies the grid data to the…
Bullface
  • 39
  • 1
  • 9
0
votes
2 answers

taskSelectAll ignores focus

#define.taskSelectAll(778) element.task(#taskSelectAll); If I have more than one grid, the task always selects the same griddata altough the focus is on another grid. Is there a way to set the focus?
0
votes
1 answer

Get caller of menuitem in global menu

I am calling a class through a menuItem in GlobalToolsMenu. The caller of my args is always null altough it is called from a form. Is there a way to transmit the form as caller?
0
votes
2 answers

How to get a Sales order number against a purchase order

I have created a Purchase order(Ex: PO_001) while creating a sales order(Ex: SO_001) by using menu item button "Purchase Order" in the Sales order form. Now I want to update some fields in SO_001 when a field update in PO_001 from purchase order…
Hari.V94
  • 23
  • 1
  • 6