In the newer version AX2012, Their is a great Addin available called Office Addin, with this Addin the data Import/Export is really easy. The office addin also have the out of box consumer for comsuming the AX document services. This is real cool feature. You can use this addin to export data from Table, or…
Forfatter: Bo Jensen
Microsoft Dynamics Ax
Customer or Vendor import In Dynamics ax 2012 using Office add-ins
by Bo Jensen •
Customer or Vendor import is bit tricky now with Dynamics ax 2012. We have to follow certain steps to do that. Steps are documented below. The reason why I am saying it is bit tricky because you have to deal with the GAB (Global address book) and its relationship with the Customer or vendor tables. …
Microsoft Dynamics Ax
How to: Create an ERX ER Data Model [AX 2012]
by Bo Jensen •
How to: Create an ERX ER Data Model [AX 2012]
Microsoft Dynamics Ax
Check Security Key via X++
by Bo Jensen •
SecurityKeySet securityKeys; Boolean fullAccess; ; securityKeys = new SecurityKeySet(); securityKeys.loadUserRights(curuserid()); fullAccess = securityKeys.access(securitykeynum("xxxxxxxxxxxxxxx")) == AccessType::Delete; formDesignElement.visible(fullAccess); Malaysia Dynamics AX Blog: Check Security Key via X++
Microsoft Dynamics Ax
Dynamics Ax – Update the records with single query statement.
by Bo Jensen •
For updating the ‘N’ no. of records we can use simple query statement instead of using while loop. (i.e. while select inventTrans where ) By using update_recordset we can update multiple records at a time. oldRFQCaseId = this.orig().RFQCaseId; ttsbegin; update_recordset inventTrans setting TransRefId = this.RFQCaseId where inventTrans.TransRefId == oldRFQCaseId; ttscommit; Dynamics Ax – Update the…
Design & Layout, Microsoft Dynamics Ax, Enterprise Portal
Display Company Logo on Dynamics EP Site and Hide Page Title « Santosh Kumar Paruvella's Blog
by Bo Jensen •
In this example, I want to share the things like 1) Display the Company logo, on the EP site. 2) Hide the Page title, the one which is there, to the side of the Company logo. To do the above things, go to the following path in the sharepoint server.. C:Program FilesCommon FilesMicrosoft SharedWeb…
Microsoft Dynamics Ax
Tuning the startup and managing memory on AX-SRV-01 – Reflections on Microsoft Dynamics AX – Site Home – MSDN Blogs
by Bo Jensen •
A few internal folks and partners have commented about their usage of the AX2009 Demo VMs. They don’t use all the applications and services that are installed and so have asked if they can tune the start-up time of the VM and better manage the memory. So here are some manual notes that we will…
Enterprise Portal
create a web popup form in AX
by Bo Jensen •
How to create a popup web form in AX Enterprise Portal.
Microsoft Dynamics Ax
Dynamics AX tools and tutorials: Tutorial: Debugging AX while still using restricted roles (non-admin)
by Bo Jensen •
Microsoft Dynamics Ax
Try Catch example code in Dynamics AX
by Bo Jensen •
The code below contains a try/catch that I use a lot when developing batch jobs, especially multithreaded ones. It deals with frequently occurring exceptions that, in some cases, can be easily solved by retrying: Deadlocks Update conflicts Duplicate key conflicts Duplicate key conflicts are more rare than update conflicts, but I’ve seen them pop up…
Application Integration Framework
How to: Call an AIF Web Service from C# to Create a Sales Order
by Bo Jensen •
How to: Call an AIF Web Service from C# to Create a Sales Order
Application Integration Framework
How to: Call an AIF Web Service from C#
by Bo Jensen •
How to: Call an AIF Web Service from C#
Sharepoint
Enable Forms Based Authentication (FBA) for SharePoint 3.0 on IIS 7
by Bo Jensen •
Enable Forms Based Authentication (FBA) for SharePoint 3.0 on IIS 7
Sharepoint
HOW TO:Forms Based Authentication (FBA) on SharePoint 2010
by Bo Jensen •
HOW TO:Forms Based Authentication (FBA) on SharePoint 2010
Microsoft Dynamics Ax
Adding only one Dimension in Dialog – Axaptapedia
by Bo Jensen •
Microsoft Dynamics Ax
Accessing record fields
by Bo Jensen •
Microsoft Dynamics Ax
InventDim id blank from “Axapta” to “AllBlank” in Dynamics Ax « Casperkamal's Dynamics Ax blog
by Bo Jensen •
InventDim id blank from “Axapta” to “AllBlank” in Dynamics Ax February 26, 2007casperkamalLeave a commentGo to comments Hey, Just found out something interesting, the blank inventDimid(With all Inventory Dimesions blank) "Axapta" is no more the same, now it is refferred to "AllBlank". I found it as i was digging to find the reason behind…
Microsoft Dynamics Ax
Coding against Dimensions
by Bo Jensen •
The usual method of programming against a specific dimension in Ax is as follows: salesTable.Dimension[SysDimension::Center + 1] = ‘The cost centre’; However, this code is not technically correct. It relies on the enum value of the dimension matching the array dimension (plus 1), which is not guaranteed. If a developer follows Microsoft’s best practice guide…
Webdevelopment
AnLogger – ASP.Net Logger – CodeProject
by Bo Jensen •
AnLogger – ASP.Net Logger – CodeProject
Microsoft Dynamics Ax
Print Report to Printer through X++ Code in DAX 2009 – Microsoft Dynamics AX – Microsoft Dynamics Community
by Bo Jensen •
Re: Print Report to Printer through X++ Code in DAX 2009 – Microsoft Dynamics AX – Microsoft Dynamics AX – Microsoft Dynamics Community