Questions tagged [dynamics-ax-2012]

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. R2 revision was published on Dec. 2012 (kernel build 6.2.158.x)

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.

1187 questions
5
votes
1 answer

Table Update Event Handler

I am investigating the capabilities of the new delegate & event subscription pattern in AX 2012. At the moment I am looking to detect when a particular field has been modified, for example when SalesTable.SalesStatus is changed to…
AnthonyBlake
  • 2,314
  • 1
  • 22
  • 38
5
votes
3 answers

Cursor moves to top when refreshing list page grid

Fellow developers, I have a custom list page, where a user can select few records, hit a button in Action pane that runs some logic in a class, and all that works fine. My problem is that the cursor does not stay at the same record but goes to the…
Harry
  • 145
  • 1
  • 4
  • 12
5
votes
2 answers

AX 2012 http inbound port activate error – deployment web site was not found for port

I am new to AX and a beginner to IIS (and first post on stackoverflow). I need some assistance with AX 2012 AIF Web Services and configuring an http AX Inbound Port. My issue is in trying to activate an Inbound Port within AX using HTTP. I receive…
Brendan
  • 5,240
  • 1
  • 14
  • 27
5
votes
3 answers

Dynamics AX 2012 SQL Extraction of Base Enum Values

Is there a table, view, or procedure I can use to extract the values from a Base Enum using SQL (straight from the DB, not within X++)? I was able to find an isolated few in the table SRSAnalysisEnums but not the enum I need in particular.
Luke Wyatt
  • 1,116
  • 2
  • 11
  • 23
5
votes
1 answer

Seem unable to edit form field in AX 2012 - X++

I'm working on AX 2012 in X++ and am trying to add functionality to the LogisticsPostalAddress form part. Part of the functionality needs to populate the form (before the changes are saved), but I don't seem to be able to populate the fields. I have…
KevinManx
  • 481
  • 1
  • 5
  • 25
5
votes
2 answers

Using 2 datsets in SSRS Axapta 2012

In 2012 dimensions could be multiple(dynamic) for any employee. Along with Employee details i need to show the dimensions. Now, I have a dataset in ssrs with empl details and another dataset with dimensions(multiple). How can i show it together…
piku
  • 471
  • 3
  • 12
  • 43
4
votes
3 answers

Base search/find functionality (Ctrl+F) in AX 2009/2012 doesn't work properly...how to fix?

I feel like I might be losing my mind...but if you search the AOT for anything with double colons "::", it fails completely. I'm trying to step through the Forms\SysAotFind to figure this out but I didn't want to spin my wheels a bunch for…
Alex Kwitny
  • 10,154
  • 2
  • 41
  • 66
4
votes
2 answers

Installation of AX 2012

I want to install Ax 2012 in my local machine. Does anyone know the steps involved in installing Ax2012
Tejashree S
  • 311
  • 1
  • 10
  • 27
4
votes
4 answers

Filter form's main datasource through the linked datasource

I have a custom form which has two datasouces. Lets say to make it easer that my form has the Salestable and SalesLines datasources. for example I could say that I have a filter which is bounded with the ItemGroup edt . I want to filter the…
Nikos Kou
  • 175
  • 2
  • 15
4
votes
2 answers

What is the fastest way of pulling data from a foreign database

I need to pull data from a single table stored in a MSSQL database. The data then gets stored in a staging table in AX, from where it is processed according to the business logic. Performance is a key factor in this project. Now I was doing some…
elToro
  • 946
  • 8
  • 28
4
votes
2 answers

How to do multi-select so that multiple selections on a parent datasource will display combined child datasource

I'll be using SalesTable/SalesLine for the sake of this discussion. I have a simple form with two DataSources, SalesTable and SalesLine, with SalesLine joined to SalesTable. There is a header and lines grid. The header grid has property…
Alex Kwitny
  • 10,154
  • 2
  • 41
  • 66
4
votes
1 answer

How to see the SQL expression of an X++ select statement?

I have below statement in a job in AX: select RecId from pjiTable join pID, Type, PrId from sjTable where pjiTable.Prid == sjTable.PrId && (sjTable.Type == PjType::TimeMaterial || sjTable.Type == PjType::FixedPrice); I have to use…
Raas
  • 261
  • 8
  • 23
4
votes
2 answers

join multiple tables to the same table using query class

I'm using the query class to build a query that will have two or three tables join to the same table like this: qbds1 = query.addDataSource(tablenum(Table1)); qbds2 = qbds1.addDataSource(tablenum(Table2)); qbds2.relations(true); qbds3 =…
Alex
  • 78
  • 1
  • 1
  • 6
4
votes
1 answer

splitting xpo into multiple xpo files

Is there a tool that allows an xpo file to be split into multiple xpo files? The exact opposite of what CombineXPOs does. The reason I'm asking is because I need to put multiple single xpo/models releases into source control and I want to avoid…
AndyD
  • 5,281
  • 32
  • 30
4
votes
1 answer

Multiple values in query range value in Dynamics AX 2012

How to build query with multiple values. I need to create filter which display only active BOMs in grid and I looking for solution. Here is my code which isnt working: public void executeQuery() { QueryBuildRange qbr; QueryRun …
user3824908
1
2
3
79 80