|

Differences between different versions of AX (AX 4.0 , AX 2009 and AX 2012) – Part -3

I have already posted 6 sections on the differences between various versions of AX in my previous two posts. In this post, I am going to discuss on the last 3 sections of differences. Workflow S.No. AXAPTA 4.0 AXAPTA 5.0 AXAPTA 2012 1 •Forward only, sequential workflows •Only interactive elements (tasks and approvals) •Support for…

|

Differences between different versions of AX (AX 4.0 , AX 2009 and AX 2012) – Part -2

I have discussed the first 3 sections on the differences between various versions of AX in my previous post. In this post I am going to discuss the differences on the next 3 sections. Services & Application Integration S.No. AXAPTA 4.0 AXAPTA 5.0 AXAPTA 2012 Implementation Process in AX 2012 1 Services are Windows Communication…

|

Differences between different versions of AX (AX 4.0 , AX 2009 and AX 2012) – Part -1

Hi All, This is Gayathri and I would like to take the privilege to start my first blog post with the differences between various AX versions. I have divided these differences into 9 major sections and posted them into 3 different posts. I hope these 3 posts will help the AX newbies and for the…

Linking two web pages with different web controls and datasets in EP for AX 2009

Hi folks……… If you would like to link two Enterprise Portal web pages in AX 2009 having different/same datasets then it is very simple. You have to create the two web controls using the two different/same datasets. Add it to the two different web pages and link the second web page using the url menuitem….

Increase performance of workflow process in AX 2009 / delete obsolete workflow data in AX 2009

Hi Folks, Recently, For a customer, I have observed that the workflow processing has become very slow then when i have observed the workflow batch job history, I have found that there are many errors and it says “The company ‘tst’ does not exist”. But this company has been deleted long back. As we know,…

Get previous page selected record(context) in EP page in AX 2009

Hi All, If you would like to get the previous page’s selected record (Context) in EP in AX 2009 then you can use the following method in visual studio for it. AxTableContext context = AxBaseWebPart.GetWebpart(this).ExternalContext; if (context != null && context.TableId == TableMetadata.TableNum(AxBaseWebPart.GetWebpart(this).Session, “MainTable”))         {              string TestField = context.DataKey.GetRecord(this.AxSession).GetField(“TestField”).ToString();        …

Workflow validation error in AX 2009: The request failed with HTTP status 405: Method Not Allowed.

When you try to validate the Workflow URL, you might get an error saying “The request failed with HTTP status 405: Method Not Allowed.” To resolve this error , there are two ways : If your system configuration is 1. Windows 2008 R2 64 bit. 2. SQL Server 2008 3. IIS 7 To resolve this…

Cannot submit a timesheet on the Enterprise Portal(EP) website in Microsoft Dynamics AX 2009

Hi All, The user can create a timesheet but cannot submit a timesheet on the Enterprise Portal website, as the Submit button is not available. To be able to submit the timesheet, you have to go to the previous page of Timesheet List and then reopen the timesheet, then the Submit button appears. However, the Submit button should…

problem in building a project using project filter after RU-7 update on AX 2009

Last month, I have found a problem after installing RU-7 kernel update to one of our Customer and thats very strange. We were not able to build a project for a layer using Project Filter( i.e., to automatically get all the objects of a layer into a project) even after putting the layer in the…

Document Handling functionality in EP for a new table in AX 2009

To display/upload the documents for a record in a newTable through EP in AX 2009, we can use the existing Web menu items like EPDocuList, EPDocuListPopUp, EPDocuListFromInfo etc.,  But if these menu items are directly used on our new EP pages then it doesn’t work properly. The solution would be to add a relation with…