Questions tagged [dynamics-ax-2009]

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 R3) are called Dynamics AX.

Microsoft Dynamics AX was originally developed as a collaboration between IBM and Danish Damgaard Data as IBM Axapta. 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.

Se also Wikipidia article.

594 questions
0
votes
1 answer

Insert an image/company logo from ax to excel

How to insert an image/company logo from ax to excel? Regards.
piku
  • 471
  • 4
  • 12
  • 44
0
votes
3 answers

MS Dynamics AX 2009 - how to copy/install a self programmed extension?

So, I've started with programming Microsoft Dynamics AX 2009, created a little own sample app in my dev-System, and now I want to install this on my test-system, which is running on some other comp. My problem: I got no idea how to create an…
Sam
  • 28,421
  • 49
  • 167
  • 247
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
4 answers

Increasing the length of the Description field in movement journal in AX 2009

How can we increase the field length of Description field up to 200 characters available in Movement Journal in Inventory module in AX 2009? The field is InventJournalTable_DescriptionInventJournalTable(InventJournalTable).Description
Muhamamd Ali
  • 9
  • 1
  • 2
0
votes
2 answers

Dynamics AX pdf files generation through batch

I generate pdf files based on reports through a server batch job(using runbasebatch class and reportRun class), if i don't schedule job just executing the class, it works perfectly, I have readable pdf files, if scheduled, my pdf files are…
Thomas Post
  • 535
  • 2
  • 11
  • 27
0
votes
2 answers

Get fields present within field group [ax 2009]

AX allows one to define Field Group ( E.g. Dimension ) as an Array in Extended Data Types. How do I get the array elements information, such as label and base type? Code : tID = dict.tableName2Id('CustTable'); counter = 0; dt = new…
semantic_c0d3r
  • 819
  • 2
  • 15
  • 31
0
votes
1 answer

Object not initialized [.NET Business Connector]

Here is my code : AxaptaObject dict = (AxaptaObject)DynAx.CallStaticClassMethod("Dictionary", "new"); object id = (object)dict.Call("enumName2Id", "TimeZone"); AxaptaObject dictEnum = (AxaptaObject)DynAx.CallStaticClassMethod("DictEnum", "new",…
semantic_c0d3r
  • 819
  • 2
  • 15
  • 31
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
2 answers

Dynamics AX 2009 How to change customer invoice layout/printing?

I'd like to change the default customer invoice print to something else. Add an image to the head, change the layout, change the columns, well everything in fact. Can someone explain how to start this, or maybe point me to some tutorial or reference…
Sam
  • 28,421
  • 49
  • 167
  • 247
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

Return a list to .NET Business Connector

Currently, I am using the following code: Axapta ax = new Axapta(); string tableName; ArrayList ax_cont = null; ax.Logon(null, null, null, null); try { ax_cont =…
semantic_c0d3r
  • 819
  • 2
  • 15
  • 31
0
votes
3 answers

How to pass a View to a queryRun?

I like to pass to "QueryRun" a View. if I put this line I have error in visual studio : ProjPostTransView = queryRun.get(tablenum(ProjPostTransView)); but if I put this line I don't have any error : custTable =…
jawhar_m
  • 145
  • 5
  • 13
0
votes
1 answer

DialogTabPage object does not have method 'frameType'

This is related to my question posted here: How to make dialog elments collapsible? Another developer has added two groups to the dialog that is displayed when creating a payment proposal (CustVendPaymJournal_Vend Class) and the "Ok" and "Cancel"…
ackzell
  • 277
  • 1
  • 3
  • 15
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…