Tagged Questions

X++ is a programming language used by Microsoft Dynamics AX. It is object-oriented and comparable to C# in some ways, though is primarily used to construct business management systems in the MorphX development environment.

learn more… | top users | synonyms

7
votes
5answers
1k views

Microsoft Dynamics AX 2009 development

I'm new to Microsoft Dynamics AX development and I'd like to learn basic things about it. I have a virtual machine with the '09 version installed. Is it essential to get familiarized with the ...
5
votes
3answers
301 views

Is semicolon really needed after declarations in x++?

As said in the book Microsoft Dynamics AX 2009 Programming: Getting Started it´s needed to put semicolons after declarations in x++: The extra semicolon after the variable declaration is ...
4
votes
1answer
60 views

How to get the file creation date of a file?

How to get the creation date of a PDF file in Microsoft Dynamics AX 2009 with X++? And how to open that PDF file in the button click?
3
votes
1answer
74 views

Axapta 2009 X++ download text file from a website

I would like to download a text file from a website, given I know the URL of it.
3
votes
1answer
98 views

How to display two grids with different data on the same form

I have a form with two grids. I have one table with rows where each row has a status of Yes or No. I'd like to display all the yes's in the top and the no's in the bottom grid. A similar scenario ...
3
votes
2answers
576 views

Debugging in Dynamics AX

I'm facing some troubles still while learning, so I guess it tends to get worse once I play with the big kids: warnings in dynamics aren't as precise and informative as VS's, there are no mouse-over ...
3
votes
1answer
174 views

Syntax error in Ax

static void Job(Args _args) { int number=10; do { print (strfmt("current number = %1", number)); number --; }while (number != 0) } This is a job just for ...
3
votes
3answers
387 views

What does the construct keyword do when added to a method?

The code here is X++. I know very little about it, though I am familiar with C#. MS says its similiar to C++ and C# in syntax. Anyway, I assume the code below is a method. It has "Construct" as a ...
3
votes
3answers
607 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?
3
votes
1answer
2k views

How to create an X++ batch job in Axapta 3.0?

I'd like to create a batch job in X++ for Microsoft Axapta 3.0 (Dynamics AX). How can I create a job which executes an X++ function like this one? static void ExternalDataRead(Args _args) { ... }
2
votes
1answer
99 views

How do I close SalesQuotation Details Form in the background?

I have created some form in which it sended a few items to the sales lines in sales order detail form. What I need now is some logic to check if salesquotation detail form is open in the background ...
2
votes
3answers
126 views

Can the X++ language be used for the following development?

I'm interested in developing primarily games and websites. Is X++ a suitable language for this?
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
389 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
2answers
555 views

Using Dynamics AX's Business Conectors to Generate Sales Orders

So, just like the title says, I need to create an application that gets data from another Database, and shoves it through Dynamics AX's throat. This data comes from a portal, not Enterprise Portal, ...
2
votes
1answer
2k views

How do i write a txt file using Microsoft Dynamics AX?

I want to write a txt file (just like i'd do in visual studio with c# using string writer and everything, with which i'm already very familiar) what class and method do i use? how does it work? ...
2
votes
2answers
275 views

Axapta Validation Class

I've written a method to handle regex validation in AX2009. Problem is that it always returns false, no matter what the expression or input string. Returns no errors, just 'false' Mind taking a ...
2
votes
1answer
477 views

Axapta: Find table by name in AOT

I would like to query the AOT to see if a table name exists using X++. Can anyone point me in the right direction or provide some sample code for doing that? If table exists with the name (str ...
2
votes
2answers
825 views

Axapta: prevent user from changing form query with search

I've created a custom lookup form in Axapta 3.0 in which a user can select an OprId from a ProdRoute datasource. Before displaying the lookup the ProdId is set and may not be altered by the user. The ...
2
votes
1answer
340 views

How to get a list of methods on a table?

In Microsoft Dynamics AX, how do I get a list of methods on a table from C#?
2
votes
1answer
1k views

How can I add more information to MS Dynamics 2009 AX's alert messages with X++?

Does anyone have some sample code or can direct me to which class I can modify to add more information to the alert messages in Dynamics AX (DAX). I want to for instance add a vendor number and userid ...
2
votes
1answer
966 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?
2
votes
1answer
338 views

How can you scan an image with X++

Does anyone know how to scan an image with X++?
1
vote
2answers
25 views

How to copy the XPO files out of version control…partial code working, bizarre issue

I began upgrading our layers to Roll Up 7 while we still were developing in another environment with TFS turned on. We were at say version 1850, and by the time I finished, we were at 1900. So the ...
1
vote
3answers
32 views

How can I find the last labelId in AX2009?

I'd like to insert all Labels from a labelModuleId in an AX2009 table. I have this job, that does nearly everything I need. But I have to enter the max Id (toLabel = 1000): static void ...
1
vote
2answers
48 views

How do I modify the default location of report library exports from ax 2009 into Visual Studio

I have a DEV, TEST, and a Production environment for Microsoft Dynamics AX 2009. I have set up SSRS reporting as well in each environment. When exporting a report library to Visual Studio, AX saves ...
1
vote
1answer
35 views

How to change the tab order of the controls in axapta?

How to change the tab order of the controls in Microsoft Dynamics AX 2009?
1
vote
1answer
45 views

Programming multi-threaded batch in X++. Not working for some reason?

Code is pretty straight forward. From the Vendor Details form, if you go Functions>Update 1099, a user wants to do this wide open on all of the vendors instead of manually doing it. I modified the ...
1
vote
1answer
73 views

Dynamics AX cross-company query with VendTrans and Global Address Book

I'm trying to create a simple cross-company query between VendTrans and VendTable. We have Global Address Book enabled so some entries are shared across companies. If I was writing SQL, it would look ...
1
vote
2answers
63 views

How to create a dialog with browse button using job in Axapta X++?

How to create a dialog with browse button(to browse a file) using job in Microsoft Dynamics Ax 2009 with X++?
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
19 views

how to disable intellisense in ax2012's code editor?

Is there a way to to disable intellisense in ax2012's code editor? sometimes when writing selecting statements it's better to have it off...
1
vote
1answer
55 views

how to check entered grid cell value present in table in Axapta X++?

If a value is entered in a cell of grid manually, then how to check that value is present in the particular table in Microsoft dynamics AX 2009 with X++?
1
vote
1answer
89 views

Decimal precision

In a form I have 2 fields one is as Decimal # and another as Amount(Real). Decimal # is an Enum having values from 1-5 and default value will be 5. Requirement: 1) Whenever value is selected ...
1
vote
1answer
30 views

Changing ProdRouteJob has no effect to WrkCtrCapRes or recalculating the capacity reservations

I'm changing the route jobs (ProdRouteJob) with optimised data from an external optimisation tool. The changed data is written with a simple ax class and a prodRouteJob.update(). The problem now is, ...
1
vote
1answer
158 views

Axapta: Load and Save file from and to container field

I need to customize AX to load an arbitrary file with arbitrary size and save it to database as a container field. I also need to read back from that container field and write the content into a file, ...
1
vote
1answer
52 views

How to make Dynamics:// URLs work correctly?

I was reading http://technet.microsoft.com/en-us/library/aa834376(AX.50).aspx about creating email templates, and I was wondering if there was any explanation on the use of Dynamics:// URLs. Search ...
1
vote
2answers
127 views

Remove a “group by” statement from QueryBuildDataSource at runtime

I need to remove a group by statement from a QueybuildDataSource object. Is there any method to do this? (The opposite of addGroupByField).
1
vote
1answer
109 views

How can I change the production status via code? (AX 2009)

I have to change the production status via code, but not from the ProdTable form. The problem that I have is, that the class ProdMultiRelease expects to be run from the ProdTable form. (Line 10: ...
1
vote
1answer
141 views

fields from multiple tables in the lookup ax 2009

Can anyone tell me how to include fields from multiple tables at run time in the lookup ? this would be very helpful.
1
vote
1answer
117 views

Payment Proposal functionality in AX 2009

When we go to Payment Journal/Lines / Create Payment Proposal - Select the vendor and click ok , it now creates the Open Transaction lines in the top part of the form and a single line with the amount ...
1
vote
2answers
123 views

Installation of AX 2012

I want to install Ax 2012 in my local machine. Does anyone know the steps involved in installing Ax2012
1
vote
1answer
201 views

Table responsible for Recid generation?

Hi can anyone please tell me 1. which is the table responsible for rec id generation 2. Can any 2 table have the same recid in ax 2009 ?
1
vote
2answers
284 views

Writing Text File in Dynamics AX

I have a set of values to written into a text file. Suppose I have a field value of size 10 but the field size is fixed as 20, so when the next field comes, it should be inserted at position 21, ...
1
vote
3answers
223 views

How Can I add date to 1 year. in X++

How Can I add date to 1 year. I have field with date. now i want to add another field which add 1 year to previous field (date) in X++ code Ex: 19/10/2010 to 18/10/2011
1
vote
1answer
398 views

How to compare two dates in MS Dynamics AX 2009?

How to compare two dates (instances of type Date, not utcDateTime) in MS Dynamics AX 2009? I want to check if particular date, taken from the table, is before (or after) the another one. Both are ...
1
vote
1answer
400 views

How do I query the objects UtilElements and UtilIdElements to fetch correct results?

I am having issues with querying UtilElements and UtilIdElements in Dynamics AX 2009. Screenshot #1 shows the class SalesFormLetter being present in the layers sys, syp, gls, glp and cup. However, ...
1
vote
1answer
124 views

Adding an XML document inside another in Dynamics AX

I have a function that builds and returns an XML document. I then want to insert this entire document inside another XML document. The problem that I seem to be having is that the XML header ...

1 2 3