Questions tagged [axapta]

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 and last version AX 7) 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.

Vote to join tags!

The early versions (from 1.0 to 3.0) were called Axapta, while the later versions (from 3.0 SP6 to AX 2012 and last version AX 7) are called Dynamics AX.

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.

See also: "Microsoft Dynamics AX" article on Wikipedia

2556 questions
0
votes
0 answers

Customize Power BI reports in D365 for Finance and Operations

I've extended CustInvoiceTrans table by one custom field, now I wanted to show that field in "Sales and Profitability Performance" Power BI embedd report in D365 FO. I found that this report is using "SALESCUBE" aggregate measurement and there is…
Vish Walia
  • 17
  • 3
0
votes
1 answer

How to retrieve data from AX query in SSRS data method

Everybody: I just make a SSRS report with AX report tools. Sometimes we must get data from AX query. I know how to add a dataset that use AX query, but not all dataset can from standard query, sometimes I must create business logic type dataset…
user824172
  • 1
  • 1
  • 2
0
votes
1 answer

Assignment of legal entity to roles for users via dmf

I m in need to find the data entity which will help to assign legal entity to a role in bulk through dmf. The below link provides information for manual and organization hierarchy for the same…
piku
  • 471
  • 4
  • 12
  • 44
0
votes
1 answer

AX2012 RouteOpr form shows all RouteOpr entries for a single ressource instead of the specific ones

My problem is that we inserted some routeOpr with the following logic (embedded in a job, see below) and now the RouteOpr form shows all the routeOpr entries in the RouteOpr Form no matter which ressource was selected. Can someone please explain…
Thomas
  • 21
  • 4
0
votes
1 answer

How to get the selected Lookup value from a custom Lookup from ax2012

Dears, I'm using Microsoft Dynamics AX2012 R3 The Case: I want to make a custom lookup in Inventory Management ==> Journals ==> Item Transactions ==> Movement ==> Lines I want to relate the Item Id to show all lines in the SalesLines Table in order…
0
votes
1 answer

Dynamics AX 4 issue with x++ email attachment

I want to send emails with attachment but I'm using AX V4 which is a 32 bits version and my office version is 64 bits so I can't use integrated email attachment with reportSendMail() method of Info class, I'm using the following code with…
Thomas Post
  • 535
  • 2
  • 11
  • 27
0
votes
1 answer

Dynamics AX 2012 Invoice line to sales order line

I am trying to join the SalesLine table and the CustInvoiceTrans. I currently have: FROM SalesLine sl LEFT JOIN CustInvoiceTrans cit ON sl.SalesId = cit.SalesId and cit.itemid = sl.itemid The issue with this is if there were multiple shipments…
Jed
  • 929
  • 2
  • 19
  • 32
0
votes
1 answer

axapta 2009 finish journal

i need to insert a finish journal to a workorder by x++. how to set the dimensions, first of all location correctly? finish journal and referring line is created, but location isn't set, so booking gives an error: "Lagerungsdimension 'Lagerort' ist…
Nico
  • 11
  • 2
0
votes
0 answers

Dynamics AX 2009 SQL Server multiple file groups

My .MDF file size is increasing and I want to add multiple file groups for Dynamics Ax 2009. I want a primary file for tables and clustered indexes and secondary file group for nonclustered indexes. Is this possible? Does anyone have implemented…
0
votes
1 answer

Dynamics 365 Finance can't close current form x++

In the init method of an intermediate form I'm trying to open a new form and close current one. Below code opens the second form however with an error message "cannot call close without detach or wait" although I tried adding element.detach() but…
piku
  • 471
  • 4
  • 12
  • 44
0
votes
0 answers

Dynamics 365 (Finance And Operations) : CORS issue while using ODATA service endpoint url from pure javascript application

Can someone help me in order to fix the CORS issue. I am successfully able to retrieve the Access Token and with the same access token I can hit the OData endpoint URL to retrieve the result by using postman but in pure JavaScript application I am…
Tanuj
  • 53
  • 1
  • 8
0
votes
1 answer

Max() inner join

I have two tables. DOCUMENT and REVISION I want to make a list of all documents and show the latest revision. It works fine to find MAX(revision.autonumber) but as soon as I do inner join I no longer get the correct result. I then get not only the…
0
votes
1 answer

Efficient way to update design of the form in D365

I always update the design of the form in the active method of the data source. Updating design means enabling or disabling buttons based on the form data source cursor. However, I face the situation in which the user receive the error of…
Nastaran Hakimi
  • 695
  • 1
  • 16
  • 36
0
votes
0 answers

Copy text to Clipboard in AX365

I added a button that will copy the following Text "This is a test" on your clipboard when the user Click on it. Any idea how to do that in x++ for D365 ?
0
votes
2 answers

initialize value of edit method in init method of form

I want to initialize a value of an edit method inside the init method of form, i wrote this: [Form] public class foo extends FormRun { str paymTermId; public void init() { CustTable…
OiRc
  • 1,602
  • 4
  • 21
  • 60