Tagged Questions

Microsoft Dynamics AX (formerly Axapta) 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.

learn more… | top users | synonyms

4
votes
3answers
992 views

Dynamics ax 4.0, opening form without applying filter on current record

I have form with VendTable grid for example, which has CustAccount field. I want to place button, click on which will open CustTable form where all customers are visible. If I just put CustTable ...
3
votes
3answers
609 views

In Dynamics AX, X++, how do you increment a date variable

I am not sure if it is something with xslt or xpath..but how do I increment a date by 1 day? For example, if the date is 2/16/2009 I want the date to be incremented by 1 to become 2/17/2009 etc. etc. ...
3
votes
4answers
653 views

What is the best way to print columns from different tables on the same row using the Axapta reporting tool?

It seems like each body section in an axapta report can only print columns from a single table(consistantly). For instance: I have a report that has the following tables: SalesLine, InventTable and ...
3
votes
1answer
2k views

Page breaks in Dynamic Ax Reports

How do you insert page breaks in Dynamic AX reports?
2
votes
2answers
3k views

How can you create a simple dialog box in Dynamics AX?

How can you create a simple dialog box in Dynamics ax?
2
votes
1answer
394 views

“this” vs. “element” keyword in X++

When writing code in X++ you sometimes need to reference this.functionYouWant() and sometimes it is element.FunctionYouWant(). Sometimes both are in scope. I often try one and if the function I want ...
2
votes
4answers
2k views

Creating Tables and Retrieving Query results with Dynamics AX 2009 business connector

I'm writing a C# command line tool to fetch data from AX and to add data (create new tables) to AX. Fetching data from an AX table is easy and documented here: ...
2
votes
2answers
476 views

Can PHP communicate with Dynamics AX business connector?

PROBLEM: I need to feed data from a PHP script into Dynamics AX. METHOD: I suppose the easiest way to do this is by using the Dynamics AX Business Connector. QUESTION: Is it possible to connect to the ...
2
votes
1answer
971 views

How do I get the previous field value in the modifiedField method of a Dynamic Ax table?

I would like to be able to perform some logic in the table.modifiedField method which compares the previous value of a field to the new value. How do I get to the previous value?
1
vote
2answers
52 views

How to display a tooltip in Dynamics AX 4.0?

I'm looking to add hover text to a given column in a grid with row specific data. I'm planning on overriding the mouse-enter event, but I'm unsure how to populate a Tooltip and have it display next to ...
1
vote
1answer
166 views

Inserting Dynamix AX 2012 SRSS PDF report into another database

I need to insert a PDF report into a linked database upon generation in AX2012. When a user generates the report in AX, a copy needs to be inserted into another database. I am not sure if this is ...
1
vote
1answer
221 views

How to show query values in LedgerTransStatement report?

In G.L>>Reports>>Transactions>>Dimension Statements, the LedgerTransstatementDialog Form opens. Here by clicking the select button, the Inquiry Wizard opens and we select ...
1
vote
2answers
102 views

Print Report to File Microsoft Dynamics AX 4.0

I've created and run a report in Microsoft Dynamics AX 4.0. I'm now looking to "Print" the report to a txt file so I can do some manual calculations based on it. When I select "File" from the "Send ...
1
vote
1answer
100 views

Project Missing in Microsoft Dynamics AX 2009

Recently, we made some changes to our Enterprise Portal project in AX. To deploy it, we exported the project, afterwards importing it into the new environment. This is the same procedure we've used ...
1
vote
2answers
174 views

What is the difference between the CommaIO and Comma7IO classes?

There is no documentation in the help file as to the purpose of the Comma7IO class, just that it extends the CommaIO class. What is the difference?
1
vote
2answers
59 views

What does the getSerie method of SysDictTable return in AX?

The SysDatabaseLog wizard seems to group the tables that are available for auditing by the result of this method call. MSDN has no documentation on this method. I need to know what it is returning ...
1
vote
1answer
85 views

How can I get the “used by” form in Dynamics AX 2009 to work?

I am trying to do a look up of where labels are used in application objects. In the label editor there is a button Used By which is supposed to perform this function. However, it only ever opens an ...
1
vote
1answer
139 views

Filtering through multiple dimesion Values

I have a dropdown(Dimesions) and a stringEdit LookUp(dimensionValue) When I select a dimension suppose 'Branch' and a Value e.g. 'B001' I filter the result with the following query ...
1
vote
2answers
425 views

Can a field be calculated based off another field?

In Dynamics Ax 2009, we want a field that will be calculated based off another field in the same table. Although it might be nice to use a display method or something, we have to actually store the ...
1
vote
1answer
184 views

Why are no CLR exceptions being reported in Dynamics AX?

When an exception ocurrs in my .NET code, the X++ code just stops executing and drops out. It doesn't display any error message at all, it simply stops working. Why is this? Is there a way to change ...
1
vote
2answers
512 views

Dynamics AX Mandatory Enum field cannot be set correctly through UI

Can anyone explain the following behaviour to me? When a field type in an AX Table is set to an Enum, you can select any of the Enum values as a value for the field. But if you make the field ...
1
vote
1answer
289 views

Creating a web service reference for dynamics ax in visual studio

I'm trying to create a service reference in visual studio for a service that i've already made in dynamics ax. when i enter the url i get an error message which says: There was an error ...
1
vote
1answer
672 views

How to select for an empty datetime in Dynamics AX 2009

I have a table with a field name "StartDateTime" of type "DateTime". I want to do a query where those fields are null. In the table browser, I see these fields as " 00:00:00", where non-empty ...
1
vote
2answers
3k views

Axapta: Convert utcDateTime to date

What is the best way to convert a utcDateTime value to a date type so I can use the global datetime functions on it? int timeDiff; date _now = systemdateget(); ; select firstOnly myUTCDateTime from ...
1
vote
1answer
2k views

Axapta: How can the Table Name, Not the Table ID, be used as a select in the Select Dialog of the Database Log Report?

Currently only the Table Id can be used which is meaningless as it is a number. A little bit of code example would really be great.
1
vote
3answers
948 views

AX trace file reader utility

Does anybody know where I can download a utility to convert the .trc trace files output by MS dynamics AX server? We have a dev version of the server running locally but no access to an MS account as ...
0
votes
1answer
39 views

Use of array to import multiple postal address in AX 2012

I am using the following code to import multiple postal addresses for a customer record in AX 2012 =(Microsoft Dynamics AX) using AIF=(Application Integration Framework). I am testing this code with ...
0
votes
1answer
84 views

Can I export an project with the command line to a XPO file? (AX 2009)

Is it possible to export an project with the command line to a XPO file? (AX 2009)
0
votes
1answer
108 views

Dynamics AX 2009: Deleting discounts and added charges

Essentially, what I'm doing is this: On insert, delete, or update on the SalesLine table, I'm checking the ProductCode of that line and determining whether or not a discount or miscellaneous charge ...
0
votes
2answers
252 views

Dynamics AX 2009: How to FTP from a batch job on an AOS

After quite a few searches for ways to FTP files in AX, I was happy to discover the WinInet class, which is more or less just a wrapper for the .DLL of the same name. I thought my problems were ...
0
votes
1answer
304 views

Dynamics AX 2009: Batch Trouble with AsciiIO class

I have a custom class, we'll call it FileProcessUpload and it extends RunBaseBatch. It more or less creates a CSV file and then uploads it to an FTP server. When the class is run manually, everything ...
0
votes
2answers
223 views

AX 2009 Check (Cheque) Logo Not Printing Correctly

We've got a .gif image with a transparent background set as the logo in AX 2009. When we print checks some of our user's get checks with the transparent background portion of the logo printed black. ...
0
votes
1answer
256 views

How to select records from multi-companies in Morphex reports?

I want to know if I can select data from multi-company in Morphex reports, for example: user wants to get report's data from CEU & CEE companies. I don't mean get the whole data from all ...
0
votes
3answers
121 views

Using the compare tool during an object import in Dynamics AX 2009

I'm trying to import a list of objects into a Dynamics AX 2009 system. The problem that I have is that the object IDs differ for all the objects that I'm importing. I'm doing the import manually, ...
0
votes
2answers
84 views

dynamics ax 2009 landing page

I would like to redirect some of my users to a specific form in aot when they open dynamics ax 2009. What is the best way to that? Today, they directly go to the role center page. Thanks
0
votes
1answer
180 views

How to change the level of AX info messages

In Dynamics AX 2009 I am trying to determine the level of indentation of an info message. What I want is something similar to this: Prefix Info1 Info2 Prefix2 Info3 I found this: ...
0
votes
0answers
139 views

Ignoring SSL certificate error for HttpWebRequest in Dynamics AX 2009

I'm in a need to bypass certificate error on HttpWebRequest used in Dynamics AX 2009. I found some fancy code that works perfectly fine in .NET: private bool ValidateCert(object sender, ...
0
votes
1answer
167 views

Dispose all GDI objects from third party ActiveX control wrapper

I have created a C# ActiveX control wrapper than I am using to wrap a third party ActiveX control. I have the ActiveX control wrapper registered and I can add it to a form in Dynamics AX. When I ...
0
votes
2answers
144 views

Why is the “Create alert rule…” missing for this grid?

Someone else on my team has created a form - for some reason the Grid control does not have the "Create alert rules..." option in it's context menu. I can't see what the difference is between this ...
0
votes
1answer
214 views

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 ...
0
votes
2answers
1k views

Create a lookup filter for a dialox in Dynamics AX 4.0

I'm trying to create a custom lookup filter in a dialog in AX. I've followed the instructions in this post x++ filter lookup in dialog and am getting a Stack Trace error -- FormRun object not ...
0
votes
1answer
142 views

Dynamics Ax Appendable lookup

I Have a table with a relationship set for a field which gives me the lookup. Within the validateWrite(), i am returning true if that field is being validated, so that it doesn't throw any error. Now ...
0
votes
2answers
429 views

Is there anyway to disable the Grid caching in Dynamics AX?

Preferably something that will disable this useless, annoying feature globally. Update 1 By default, Dynamics AX shows only the first 20 rows of a grid. This is an awful feature. I cannot see how ...
0
votes
1answer
44 views

What is the FeatureKey enumeration of the UtilElementType and is there an equivalent in Dynamics AX 2009?

I've downloaded some code off the net which includes the UtilElementType::FeatureKey enumeration. This does not exist in Dynamics AX 2009. What was its purpose? More importantly, is there an ...
0
votes
2answers
293 views

What are relations on Extended Data Types used for?

I can see that Extended Data Types can have Array Element which seems to make it a composite type. I'll be looking into that later. What are the relations used for? MSDN was woefully crap at ...
0
votes
2answers
213 views

How do I add a Label to a display method in Dynamics AX 2009?

I would think you should be able to define a label on a display method. However, I can't see it in the properties window. But there is a Best Practice Warning: Control label is a copy of its display ...
0
votes
3answers
402 views

Getting the index of an array element of EDT Dimension

I need to write a job where i could fetch the index of an array element of EDT Dimension e.g. In my EDT Dimension i have array elements A B C when i click over them for properties I see the index for ...
0
votes
2answers
161 views

Does Dynamics AX 2009 support item hierarchies?

For example, a Blue Chair is manufactured by a manufacturer M. Therefore, there is a Blue Chair item. Wholesaler X and Wholesaler Y both buy Blue Chairs from Manufacturer M. They put them in ...
0
votes
1answer
483 views

How to tell what module has called the program

When using [Dynamics] [AX] is there a system function that can be used to determine which module the user was in when the program was called? I want to execute different X++ lookup code for ...
0
votes
2answers
927 views

filter look up in dialog

I Have created a dialog in a class, the dialog method is as below static void dialog(Args _args) { Dialog dialog; DialogField dialogFieldCurrentState; DialogField ...

1 2