Questions tagged [axapta]

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 and last version AX 7) 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.

Vote to join tags!

The early versions (from 1.0 to 3.0) were called Axapta, while the later versions (from 3.0 SP6 to AX 2012 and last version AX 7) 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

2556 questions
0
votes
1 answer

Is there any method that changes only specific grid color, not entire form fields and grids in AX 2012?

I have some problems with displayOptions method in AX 2012. I want to change form grid color where all inserted data is displayed, but my method also colors every other field that can be filled by client(Fields isnt in that grid). My method is…
0
votes
1 answer

X++ unbound control

I'm new to X++, and I want to put an unbound checkbox on a tab in the sales header form (SalesTable). When the configure line button is pressed on the bottom half of the form for a sales line, I need to have code in that other class check the…
Kevin
  • 1
  • 1
  • 1
0
votes
2 answers

How to change command of formcommandbuttonControl dynamically in d365?

I have a form with a formCommandButtonControl in d365. I want to change the command associated to the button dynamically according to the condition in the code. I can't find any base enum to choose the value. switch (x) { case 1: …
Nastaran Hakimi
  • 695
  • 1
  • 16
  • 36
0
votes
1 answer

How to create Cross tab / matrix report in D365 for Product Type, Vendors , and few dimensions

I have a requirement to develop a cross tab or matrix report in D365 in traditional way. I have to design a report that gives the summary of Qty, Price per unit, and Amount for product type based on the Vendors. Presuming the best design to be a…
0
votes
2 answers

Check (Cheque) Remittance Printing on separate sheet - AX 2009

We're using AX 2009. When one user prints cash disbursement checks, the remittance is printed on the same physical sheet as the check. This is the way we'd like it to work for all our users. However, when one user prints, the remittance is printed…
Brent Lamborn
  • 1,370
  • 3
  • 17
  • 37
0
votes
0 answers

Form added field but Actual execution not appear

I would like to add a column Journal number on the settlement Form (form VendOpenTrans), however the actual form from journal is not showing the newly added Column I have attempt to duplicate those field that are visible, rename and re-path to…
Raynon
  • 33
  • 6
0
votes
2 answers

RecordSortedList and temporary table

I have a performance issue with multiple temporary tables that I'm trying to solve with RecordSortedList, but I'm getting strange results. I have a temporary table that has a couple hundred thousand records being inserted into it, and then used…
rjv
  • 1,058
  • 11
  • 29
0
votes
0 answers

Framework error in some transactions and different users AX 2012

In Dynamics AX 2012 R2 randomly in different modules of the system a .NET Framework error arises. AX aborts the transaction and errors remain because the transaction does not complete. This happens with different users and not always in the same…
JMarR
  • 55
  • 7
0
votes
1 answer

How to name parameter form for SysOperation batch job task in d365?

I have created a batch job using the SysOperation framework, I want to set title of the form which shows the parameters of the job. How can I do that? The title is already shown is the name of the service class and the entry point method. This is…
0
votes
0 answers

AX code to enable disable menu item button if field value is greater than 0

Enable disable Menu item button if lower pane grid value is equal to the view details form value and if the secondary field value is greater than 0 than enable the button else disable it. Microsoft Dynamics AX. I need to Enable Disable a menu item…
0
votes
0 answers

Create a Lookup filter on Settlement

I am not very familiar how is all the settlement works behind the code. However I have notice that when we do settlement, only selected vendor and posted journal will be display. Hence I would like to make use of this properties to customized so…
Raynon
  • 33
  • 6
0
votes
1 answer

Dynamics Ax How to Add Filter to Grid

I have a form/grid that contain 2 different datasource I added StringEdit To form StringEdit's EDT is a field From datasource1 I want to add filter to Datasource2 records according to Stringedit there is relations between tables select…
yalcinpkr
  • 15
  • 4
0
votes
1 answer

AX2012 Dynamic Dialog Lookup With Two Columns

Has anyone ever created a dynamic dialog formstringcontrol with a lookup that contains two columns? Something like VALUE - DETAILS where Value is returned to the field upon selection. For me, this generally works, except the second (details)…
Brad
  • 1,357
  • 5
  • 33
  • 65
0
votes
1 answer

Use cacheAddMethod for methods of datasource AX2012

There is a form have two display methods. So form load is so slowly. I searched and found this way; public void init() { super(); MyTable_DS.cacheAddMethod(tableMethodStr(MyTable, dispCreditBalance)); } but my display methods not in table…
Mumble
  • 141
  • 1
  • 8
0
votes
1 answer

Saving form with outer join tables ask for filling mandatory fields of outer table

I have added a table in the purchase order form as a data source. because its data is shown in a tab of the purchase order form. This table is filled in a form that is open from the purchase order form. At first, the link type of the joined source…
Nastaran Hakimi
  • 695
  • 1
  • 16
  • 36