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. Uses the X++ programming language for customization.

learn more… | top users | synonyms

6
votes
1answer
378 views

How should I go about creating a multilingual text translation editor in VS 2010?

Feature explained below is available in Microsoft Dynamics AX (formerly known as Axapta), an ERP application. However, my question is related to Visual Studio 2010 and MVC 3 application. Please find ...
4
votes
1answer
35 views

How to automatically resize the grid when the form is resized?

How to automatically resize grid or another child component when my form is resized?
4
votes
1answer
61 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?
4
votes
4answers
1k views

Examples of Dynamics AX 2009 programming?

I'm just learning to program Dynamics AX 2009. So far I got the dev system running, I got some background about the architecture. Now I'm looking for some walkthrough-samples to learn more about ...
3
votes
1answer
75 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
81 views

Add a lot of columns to the grid on a form

I have to add all 86 fields from a view based query inside a grid on a form. The problem is that a form is very slow and the application freezes. Is there any way to make it faster?
3
votes
1answer
117 views

Data upgrade script for base enum from AX 4.0 to AX 2009

Kindly assist me with some ideas in writing the Upgrade script for upgrading the base enum in AX from AX 4.0 to AX 2009. Also i would like to know the sequence of upgrading and the reasons behind. ...
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 ...
2
votes
1answer
30 views

Dynamics AX 2009 Business Connector Permissions

In direct mode, what permissions does the Business Connector use? In AX 2009, the Business Connector can run in direct or indirect mode. In indirect mode, you use LogonAs to impersonate an AX user, ...
2
votes
1answer
40 views

Dynamics AX 2009 - Promoting a New Field Security Key to Live

We have an AX 2009 live environment running 4 companies. As part of our development process we have been adding a number of new fields to forms, and applying security keys to these fields so that ...
2
votes
0answers
34 views

DAX 2009 Enterprise Portal: Passing Different Contexts to Different Pages

I have a page that shows a grid of Customer Contracts (KeyField = ContractId), and when I click on the ContractID, it takes me to the Contract Detail page with the proper Contract details displayed. ...
2
votes
2answers
189 views

Dynamics AX 2009: Displaying a name instead of an ID in a lookup field

I am creating a project in AX 2009 on a form. There is a lookup field called "SubsPersonName", which performs a lookup on the ContactPerson table using the following method. public void lookup() { ...
2
votes
2answers
153 views

Try to use Winapi::findFirstFile running on server

I have a problem trying to run Winapi::findFirstFile running on server. I havve already tried copying the method on the class WinapiServer, and changing some lines, like this: server static container ...
2
votes
1answer
38 views

Dynamics AX Unusual Table Behavior

It's apparently the week for unusual AX problems. I have custom, company-independent tables in AX that on first view always shows one particular record. This occurs if you access them from a form, ...
2
votes
1answer
60 views

DataMethod Parameters in SSRS

I wrote a datamethod for my SSRS report as seen below. I created a parameter called county and it is working fine. When I tried to change the multivalue property of the parameter to true it stopped ...
2
votes
1answer
103 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
1answer
384 views

Can I code in .NET/C# for Microsoft Dynamics AX?

I am a C# developer and want to start learning Dynamics AX. Please guide me can I use my .net/C# skills (knowledge of API) in Dynamics AX ? I know AX is developed in X++ but some one tell me it is ...
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
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
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
533 views

How to select a path from Dynamics AX 2009 Form?

In Dynamics AX 2009 I created a wizard, and now I want to add a field to select a path from the local file system. Since there is no special control for selecting a path, how do I achieve this? Do I ...
2
votes
3answers
430 views

How to create an unqualified catch block in dynamics AX?

How to create an unqualified catch block in Dynamics AX ? This is said dev help for AX2009sp1, but there is no example of it. All valid catch blocks need the exception type as mandatory parameter, ...
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 ...
1
vote
3answers
30 views

Finding the Total Available and Available physical for an Item/Warehouse

I have a method for a display field which does the following; return InventSum::find(_salesLine.ItemId, InventDim::_salesLine.InventDimId).AvailPhysical(); This gives me the on-hand Available ...
1
vote
2answers
27 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
1answer
12 views

Resources for Developing SSRS Reports in AX 2009

I have spent a lot of time recently looking for some resources to help me to learn some more advanced techniques for developing AX 2009 SSRS reports. There is a lot of information available about ...
1
vote
3answers
36 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
1answer
25 views

Copying company data from one server to another, Ax 2009

We will soon be migrating company data from our pre-production server to production with Microsoft Ax 2009. I believe that there are two ways to do this and would like to know of any issues that ...
1
vote
2answers
55 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
47 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
77 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
97 views

Axapta 2009 AOT Reports

Currently I am working in a Report sections. In this I have one doubt. In my Report I have 3 tables with relation on one field. I want to filter the data based on that common field I used in the JOIN ...
1
vote
2answers
92 views

What is the algorithm for random numbers in X++? [AX]

What is the algorithm to have random reals using x++ in Dynamics AX?
1
vote
2answers
56 views

How do I make a displayMethod() in AX?

What are the steps that I have to complete to create a displayMethod() for later use on a TextEdit?
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
2answers
51 views

Dynamics AX Security Keys Disappearing

AX 2009: I created Security keys and assigned them to all my objects. Everything worked perfectly, until we went to install at the client site and found our keys were no longer assigned to objects in ...
1
vote
2answers
129 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
2answers
105 views

AX 2009 batch job got stuck in executing status

We have an issue where the batch got stuck in the executing status. Kindly let us know if some one has some suggestions on how to delete the batch job or restart the batch job. Thanks
1
vote
1answer
111 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
204 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
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
3answers
225 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
410 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
4answers
104 views

Microsoft dynamics - which one to go for; ERP OR CRM

I have requirement of preparing an in-house Project Management and accounting app using Microsoft Dynamics. My requirements are similar to what explained in the below page: ...
1
vote
2answers
448 views

Insert dateTime field into Dynamics AX database through business connector

I have been trying to get my C# program to insert records directly into a Dynamics AX 2009 database using the .NET business connector. So far I can easly insert a string, int, int64, enum (NoYes), ...
1
vote
1answer
403 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
125 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
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 2 3 4