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
0
votes
1 answer

Fields not displaying in SSRS report using Display method

I am trying to display the field in the SSRS report using the Display method. I created a display method in a table which returns the required value. I then selected that display method as the field in the report. It does not show any value in the…
Alok
  • 244
  • 2
  • 8
  • 23
0
votes
1 answer

Activating/Deactivating aif ports using a script

I've searched google and also this site but am having trouble finding any examples for this. Does anyone have any suggestions?
0
votes
0 answers

Access COM DLL from MBS Axapta 3

We have MBS Axapta 3 in our company. The boss doesn't want to migrate to a later version of Dynamics AX, so I'm stuck with this. Basically what I'm trying is to access my own COM DLL from Axapta's X++ code. I would like to be able to access .net…
Jack Casas
  • 914
  • 18
  • 37
0
votes
1 answer

Remove legal entity check from some forms

There are some forms which exist in only certain legal entities, I want to remove this check somehow, and make these forms available in some other legal entity as well, any idea?
Bilal Saeed
  • 603
  • 2
  • 10
  • 24
0
votes
1 answer

Personalize Dynamics AX Synchronization

I need your help so i can resolve some problem on my job. We have some reports that we run on Sql Server Reporting Services. The query on it its T-SQL language but the report is really slow so i ran the "Show Estimated Execution Plan" on SQL Server…
JGutierrezC
  • 4,398
  • 5
  • 25
  • 42
0
votes
2 answers

How to get return value from IAxaptaRecord::Call()?

In Dymanics AX 4.0, I want to run some methods under the Application Object Tree (AOT) > Data Dictionary > Tables > CustTable > Methods. (Could be any table at all) This is mainly to get some custom calculated values, and also in part to deal with…
Jake
  • 11,273
  • 21
  • 90
  • 147
0
votes
1 answer

how to get static range in your report

In AX Report the User can select different Range. I seek to show that the criteria used to filter user in the report itself even the expression "parameter!CustomerAccount.Value" don't work because this filter is not a static parameter. the user can…
jawhar_m
  • 145
  • 5
  • 13
0
votes
1 answer

To find a particular word written in a string type field in AX 2012?

Is it possible in AX 2012 to find a particular word/words written in a string type field in AX 2012 table or form. e.g, I have a field named Memo in my table named test. In that field I have a written a text as: Hello, We need to confirm you that…
Mohd Saddaf khan
  • 289
  • 2
  • 14
  • 26
0
votes
1 answer

Using date part only of CreatedDateTime field in while select statement

How can one group by a table based on only the date part of the CreatedDateTime field in X++ in dynamics AX? I can use the following statement in the sql server and get what I want but I don't know the way to do same in X++. select COUNT(RECID)…
0
votes
1 answer

Exporting csv file in Ax 2012

I am exporting a csv file from Ax 2012. The path to store Eg:"D:\Local\folder" is coming from a field in Ax 2012. Now I have created a new file. Eg:Cust.csv, and wrote my values from a container to the file. The problem is how to store the file in…
0
votes
1 answer

Field type returning numbers [Axapta]

I want to get the field types. My code is as follows: tID = dict.tableName2Id(tableName); counter = 0; dt = new DictTable(tID); if (dt) { counter = dt.fieldNext(counter); while (counter) { df = dt.fieldObject(counter); if…
semantic_c0d3r
  • 819
  • 2
  • 15
  • 31
0
votes
1 answer

Limit number of business connector users in AX2009

Background We provide some webservices to export and import some data to a website. Unfortunatly the programmers of that website don't seem to, or don't want to understand, that if they try three times and get three errors, the 1,000,000th time it…
0
votes
1 answer

copy contents of attached file in AX 2012 to a particular record

I need to copy the contents of a attached file to a particular record in AX2012 in any form and then I have to paste this content in any string type field under same form. I am trying to perform this as: public void getdocucontent() { …
Mohd Saddaf khan
  • 289
  • 2
  • 14
  • 26
0
votes
2 answers

Dynamics AX Add Products Filters without Retail Add On

I need to enable the filters section of the Add Products form (RetailAddProducts) when called from a Purchase Order Form. This feature is only native to Retail Catalogs as I understand it but I need to bypass this. Is this possible? If so how…
Luke Wyatt
  • 1,126
  • 2
  • 12
  • 23
0
votes
2 answers

Dynamics Ax 2012 Missing Category Column in EcoResProductCategory

We are having an issue with the form EcoResProductCategory. At one point, this form had a column named 'Category' that our company utilized. Somehow this column has gone missing. My team develops on the CUS level and there is a vendor that I…
Luke Wyatt
  • 1,126
  • 2
  • 12
  • 23