Forfatter: Bo Jensen
Application Integration Framework, Microsoft Dynamics Ax
Run jobs instead of waiting for batch processing
by Bo Jensen •
The usual way for the AIF to run is using the batch processing framework, where you setup an interval for the inbound and outbound processing to run. This minute or so can feel like an age when you are in the middle of developing:
Microsoft Dynamics Ax, Application Integration Framework
Top 5 AIF Development Tips and Tricks « Greg On Dynamics Ax
by Bo Jensen •
1. Enable the debugger You will notice, if you put a breakpoint into your document class, that when you run the associated action, the breakpoint will get ignored – leaving you in the dark. This is because the action is called using a ‘runas’ function call to change the user executing the code. To workaround…
Microsoft Dynamics Ax
Axapta queries Fact
by Bo Jensen •
The query object model contains classes to define and run a query. These objects are used to define the query data source, the fields returned, record ranges and relations to child data sources. The following illustration shows the object model. DAX Blog: Axapta queries Fact
Sharepoint, Webdevelopment
Install Sharepoint 2010 on Windows 7
by Bo Jensen •
Steps to install Sharepoint 2010 Script to install Sharepoint 2010 on Windows 7 How to Fix Central Administration: Service Unavailable Issue? Sharepoint 2010 tips: Failed to connect to Configuration Database SharePoint Configuration Wizard failed with Error "Failed to connect to the configuration database…Error during encryption or decryption. System error code 997" SharePoint 2010 Reference: Software…
General
Create LookUps Using X++ « Vasanth Arivali's Space
by Bo Jensen •
Here I create Lookups using X++ Code(without Ax Table or EDT relation). For that i override a String(Text) Control’ s lookup method.
Microsoft Dynamics Ax
Go To Main Table Functionality in Axapta « Vasanth Arivali's Space
by Bo Jensen •
Go To Main Table Functionality in Axapta « Vasanth Arivali’s Space
Microsoft Dynamics Ax
Microsoft Dynamics AX 2009 : Working with Forms – Building dynamic form
by Bo Jensen •
Microsoft Dynamics AX 2009 : Working with Forms – Building dynamic form – Microsoft Certification Examples, exercises, practises, tutorials, solutions about Applications Server
Microsoft Dynamics Ax
Dynamics AX: Using C# code to connect to Ax 3.0
by Bo Jensen •
Dynamics AX: Using C# code to connect to Ax 3.0
Microsoft Dynamics Ax
Dynamics AX: Map & MapEnumerator Objects
by Bo Jensen •
Dynamics AX: Map & MapEnumerator Objects
Microsoft Dynamics Ax
Marking a Sales Line with Purch Line in Dynamics AX 2009 with X++ Code
by Bo Jensen •
Microsoft Dynamics Ax
AX TADKA: Get list of all open windows using X++ Code
by Bo Jensen •
General
Migrating Your MCP ID To A Different Windows Live ID
by Bo Jensen •
Migrating Your MCP ID To A Different Windows Live ID If you’re planning to use a different Windows Live ID to login to your MCP Member Site, the process may not be as straightforward as it seems. The following gets you through the change without the pitfalls.
Microsoft Dynamics Ax
Using X++ get Language List from Dynamics AX 2009
by Bo Jensen •
Using X++ get Language List from Dynamics AX 2009 – Jimmyxie.yf – 博客园
Microsoft Dynamics Ax
Using InventDim::newDimId in Axapta Programming
by Bo Jensen •
InventDim myInventDim; ; myInventDim.clear(); //You have to put in existing dimensions and values for them below myInventDim.InventLocationId = "Main"; myInventDim.InventColorId = "Blue"; //So far the RecId of the myInventDim record buffer is 0 myInventDim = InventDim::findOrCreate(myInventDim); //Now the RecId is not 0, and the InventDimId is a new or an existing InventDimId info(myInventDim.InventDimId); Using InventDim::newDimId…
Microsoft Dynamics Ax
Dynamics Ax Dictata: Traverse grid records
by Bo Jensen •
for ( custTrans = CustTrans_DS.getFirst(); custTrans; custTrans = CustTrans_ds.getNext() ) { totalAmountMST += custTrans.AmountMST; } Dynamics Ax Dictata: Traverse grid records
Enterprise Portal
AxUpdatePortal.exe does not update Enterprise Portal when not running from an elevated command prompt – Microsoft Dynamics AX Technical Support Blog – Site Home – MSDN Blogs
by Bo Jensen •
AxUpdatePortal.exe does not update Enterprise Portal when not running from an elevated command prompt – Microsoft Dynamics AX Technical Support Blog – Site Home – MSDN Blogs
Microsoft Dynamics Ax
Dynamics Ax Live: How to filter records in a form by code
by Bo Jensen •
Dynamics Ax Live: How to filter records in a form by code
Microsoft Dynamics Ax
Dynamics Ax Live: How to open a form by code
by Bo Jensen •
Dynamics Ax Live: How to open a form by code
Microsoft Dynamics Ax
Create Forms by Using Code in Axapta
by Bo Jensen •
Create Forms by Using Code