Dynamics AX: AX 2012 – Process Cubes Error: translations in Standard Edition
Forfatter: Bo Jensen
Sharepoint
Sharepoint 2010 Editions Comparison
by Bo Jensen •
Go to the link below to see the differences between editions of Sharepoint 2010 Editions Comparison
Microsoft Dynamics Ax
How to loop through a Map in AX 2012
by Bo Jensen •
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…
Webdevelopment
How Do I Load Page Content Dynamically with jQuery? – ASP.NET Ajax Library
by Bo Jensen •
How Do I Load Page Content Dynamically with jQuery? – ASP.NET Ajax Library
Webdevelopment
3 reasons why you should let Google host jQuery for you
by Bo Jensen •
3 reasons why you should let Google host jQuery for you » Encosia
Sharepoint
Submit a form to outside website from sharepoint
by Bo Jensen •
Sending a form from to outside of a sharepoint implementation is a tedious task, so I am writing a jquery plugin to facilitate that job. As most of .net applications (sharepoint being one of them) it wraps the html code with a form element. For some reason you cannot have a form inside of a…
Webdevelopment
Making “Post” and “Get” forms from SharePoint’s pages | SharePoint
by Bo Jensen •
If you’ve tried to insert a form into a sharepoint’s page you mus have been disappointed. The form just didn’t work. You can’t make the form to post or get to some url, because the whole SharePoint’s page is one big <form> element. So I went a bit deeper on how Microsoft guys are doing…
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…
SQL Reporting Services, Microsoft Dynamics Ax
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 SQL Server
Check for database locks in SQL Server
by Bo Jensen •
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
Sharepoint
A Static State: Customizing Content Query Web Parts
by Bo Jensen •
A Static State: Customizing Content Query Web Parts
Sharepoint
How to customize the Content Query Web Part XSL to aggregate blog posts « The SharePoint Swiss Army Knife
by Bo Jensen •
How to customize the Content Query Web Part XSL to aggregate blog posts « The SharePoint Swiss Army Knife
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.