Map iim = new Map(Types::Integer, Types::Class); MapIterator it; // Add some elements into the map iim.insert(1, new query()); iim.insert(2, new query()); iim.insert(4, new query()); // Create a map iterator it = new MapIterator (iim); // Print "[int -> class] iterator" print it.definitionString(); // Go on for as long as elements are found in the…
Kategori: Microsoft Dynamics Ax
Microsoft Dynamics Ax
Understanding the changes to Table Relations
by Bo Jensen •
Well I hope everyone is having a fine week so far. Oh Wednesdays, the furthermost point between two weekends. It’s a day of great productivity, as we push towards that glimpse, and hope for our Saturday and Sunday. To help you out during the middle of this week, I thought it was time we spent…
Microsoft Dynamics Ax
Dynamics Ax Musings: X++ in the .NET CLR : Life in the Fast Lane
by Bo Jensen •
You’ve heard it by now. In Dynamics AX 2012, X++ can actually run in the .NET CLR. What I’ve often heard is “X++ running on the server runs in IL”. Well, that is somewhat true. But it doesn’t mean setting your classes or menu items to “RunOn Server” makes them run in IL. So what…
Microsoft Dynamics Ax
date2StrUsr and DateFlags Error when Compiling/Interacting with Dynamics AX 2009 SP1
by Bo Jensen •
I faced a very strange error two times so far saying that there is date2StrUsr function: “The wrong number of arguments has been specified for the function” and on the base enum DateFlags: “The enumeration does not exist on DateFlags base enum”. Actually this has happened due to some “crash” in the SP1 of Microsoft…
Microsoft Dynamics Ax, SQL Reporting Services
Create Quick first SSRS report in Dynamics AX 2012
by Bo Jensen •
Today, let us learn how to quickly create report models and report in Visual studio and add to AOT[Dynamics AX 2012] and see a running report.
Microsoft Dynamics Ax
date2StrUsr and DateFlags Error when Compiling/Interacting with Dynamics AX 2009 SP1
by Bo Jensen •
date2StrUsr and DateFlags Error when Compiling/Interacting with Dynamics AX 2009 SP1 « Amer Atiyah, Microsoft Dynamics AX Solution Architect
Microsoft SQL Server, Application Integration Framework
Info: AifResourceLock Table « Santosh Ramamurthy AX Blog
by Bo Jensen •
When debugging X++ code the developer tends to press (Shift+F5) to stop the execution of program. This symbolizes that either the issue is figured out (or) may be he needs more data to understand the issue which is going on. This type of debugging usually has a side effect on AIF.
Microsoft Dynamics Ax
Create Progress bars in Dynamics AX [startlengthyoperation, SysOperationProgress,Animations ]
by Bo Jensen •
Create Progress bars in Dynamics AX [startlengthyoperation, SysOperationProgress,Animations ] « Sreenath Reddy G – Dynamics AX Consultant’s Blog
Microsoft Dynamics Ax
Microsoft Dynamics Ax: How to create a help file
by Bo Jensen •
In DAX, its very easy to make your own .chm Help file and integrate it with the Application. Say you have made a new module/ functionality in DAX (new Configuration Key) and want to make an integrated Help file. First you have to download the AX Help File .chm maker from Partnersource.Help Kit for Microsoft Dynamics…
Microsoft Dynamics Ax
Connecting MSSQL DataBase with X++ Code.
by Bo Jensen •
Sometimes we need to connect to DataBases other than the Axapta DataBase. So let us explore how it can be done with X++ code.
Microsoft Dynamics Ax
X++ CODE TO READ MS OFFICE WORD DOCUMENT
by Bo Jensen •
Use the below job if you want to read text from MS Word document in Dynamics Ax 2009.
Microsoft Dynamics Ax
DAX 2012 Data Model – Global Address Information
by Bo Jensen •
In 2012 address table is obsolete (no longer used) and new tables have been introduced which follow normalization and avoid storing of redundant data. So this post basically – Describes about new data model – X++ job to illustrate how address and contact information can be migrated to AX 2012.
Microsoft Dynamics Ax
X++ code to write data to XML File
by Bo Jensen •
X++ code to write data to XML File
Microsoft Dynamics Ax
X++ code to Read/Write Dynamics Ax data to excel
by Bo Jensen •
Here are some bits of X++ code to read and write AX data from Excel
Microsoft Dynamics Ax
X++ code to identify multiple selected records in Grid
by Bo Jensen •
1. Create a new method on form and copy the following code. 2. Next create a button on form . and call the method on the button click event. (for the button property makesure the Multiselect should be set to yes , or else by default for multiple selection system will disable the buttons) void…
Microsoft Dynamics Ax
Code to generate NumberSequence numbers
by Bo Jensen •
Axapta uses following classes for generating numbers against numberseq code. 1.NumberSeq class–> Main class which will generate,assigns numbers and vouchers for references. 2.NumberSeqReference–> Used to find the reference.
Microsoft Dynamics Ax
Dynamics AX Solutions: Filtering Excel and CSV files in a dialog
by Bo Jensen •
Here is a small peace of Axapta x++ code, that allow you to filter XLSX and CSV files in a dialog box… This is useful if you want to show only this type of files in a selection. public Object dialog() { DialogRunbase dialog = super(); #AviFiles #Excel dialogFilename =…
Microsoft Dynamics Ax
How to copy configuration and setup data from one environment to another environment in Microsoft Dynamics AX 2012
by Bo Jensen •
In Microsoft Dynamics AX 2009, the duplicate company feature was used extensively to copy data from one company to another. The feature was also used to build development or test environments, UAT, Preproduction and deployment scenarios that moved data from one environment to another. For example development to test environment, test environment to UAT environment, Pre production to Production environment etc. However this feature became obsolete in Microsoft Dynamics AX 2012.
Microsoft Dynamics Ax
Where is SharePoint web.config « Marcello Tonarelli Blog
by Bo Jensen •
There is a separate web.config file for each Web Application / IIS Website which is running an instance of SharePoint. For example, if Sharepoint, Central Admin and the MySite host are all running as separate Web applications (different Application pools) on separate IIS sites, there will be a web.config file in the root of the…
Microsoft Dynamics Ax
Dynamics AX: AX 2012 – Excel Add-in Revisited
by Bo Jensen •
With the release of Microsoft Dynamics AX 2012, came some great new ways of achieving business requirements, and user experiences. One of those is the Excel Add-in for Microsoft Dynamics AX 2012.
