WINDOWS Live Search

To contact me for any clarifications regarding any posts / information, please mail me at arijit [dot] basu [at] gmail [dot] com


Sunday, September 28, 2008

AX 4.0 Webcast [Topology & Sizing Overview] - India Edition

Last week I delivered a webcast on "Deployment Architecture & Sizing Considerations in AX 4.0 – An Overview". This was for Indian partners & customers. Since AX 2009 has still not been released in India, I did it on AX 4.0. Its an introductory presentation. Due to a technical snag, this session couldn't be recorded :(I'm attaching the presentation below. Click Image to download.


Saturday, August 30, 2008

AX 2009 Documents

I've been kinda busy with a AX upgrade project so haven't been able to post regularly. However just about managed to take some time out and attaching some nice AX 2009 documents for general use. I have uploaded them all in a central place for anyone to download.(Zipped file for all documents also included in folder - AX 2009 Documents Full.zip) Click the link below. These documents include:

-AX 2009 Upgrade Guide.pdf 
-AX 2009 Localization.pdf 
-AX 2009 BI Cube Reference.pdf 
-AX 2009 Installation Guide.pdf 
-AX 2009 Security Hardening.pdf 
-AX 2009 Server DB Admin.pdf 
-AX 2009 EP Admin.pdf
-AX 2009 Integrate Workflow in Financial Journals.pdf 
-AX 2009 Managing Compliance.pdf 
-AX 2009 White Paper Multisite Activation.pdf 
-AX 2009 Post To Ledger.pdf 
-AX 2009 Setting up intercompany for intracompany direct delivery.pdf 
-AX 2009 Shipping Carrier Interface.pdf 
-AX 2009 Team Server (ID Server) Setup Whitepaper.pdf  
-AX 2009 Visual SourceSafe Version Control Setup Whitepaper.pdf 


Friday, August 8, 2008

Rapid Configuration Tool for Dynamics AX 2009

The new release of Rapid Configuration Tool (RCT) for Dynamics AX2009 is now available for download at Partner Source.

The Rapid Configuration Tool is integrated into Microsoft Dynamics® AX and provides key assistance to partners and customers during implementation by providing project management features, easier configuration access, communication support and documentation on how to successfully configure Microsoft Dynamics® AX.


Click here to download [Requires Partnersource Access]

Thursday, July 31, 2008

Microsoft Dynamics AX 2009 White Paper: Posting to the Ledger

Hi, Came across a very nice resource for Posting to AX Ledger via API's. Really nice and must read.


Happy DAX-ing :)

Tuesday, July 8, 2008

Demo Data for Microsoft Dynamics AX 2009

The demo data for Dynamics AX 2009 has been released. Its "Contoso Entertainment Systems (CES)" . Now the Demo data comes in 2 flavours... standard dat/def & a SQL backup. Click the link below to download.


Demo Data for Microsoft Dynamics AX 2009 [Requires Partnersource Logon]

Saturday, June 28, 2008

“How Do I” Videos — Dynamics AX

The Dynamics AX 2009 EP has undergone some major changes. Couple of “How Do I” Videos have been uploaded at MSDN by Mey and his team. Its a must download.
“How Do I” Videos — Dynamics AX
Also check out the AX EP team BLOG
AX EP Team BLOG
Check it out during the weekend :)

Wednesday, June 18, 2008

AX 2009 Workflows: A Quick overview

Here is a quick overview on AX 2009 Workflow...a feature long awaited :)
Workflow - "Machine readible code for a business process"
-Feature of Base AX 2009

-Workflow components reside on a Web Server
-Utilizes the Windows orkflow Foundation (.NET 3.0)
-Utilizes the AX Batch framework
-Requires AD User for Workflow
-Requires exclusive site on IIS to function
-The Workflow components on the Web server use the .NET BC to communicate with the AOS using Workflow system account(existing AX user).
Architecture overview:-

Setup (Steps):-
-Setup AD User for Workflow Account & configure in AX

-Setup & Configure IIS on Web Server

-Setup Workflow Component using AX installation option
-Run the Workflow Infrastructure Configuration Wizard {Batch Jobs, Workflow site}
-Configure the Workflow in AX
Workflow Objects:
Workflow templates:
Workflow templates capture information about workflow categories , what business document the workflow will operate over, what workflow elements (Tasks and Approvals) are required in the workflow configuration,which application event handlers will handle the events that are raised as the workflow executes etc.The first step in creating a workflow is to add a workflow Template. A Workflow Template can be said to be the metadata A workflow template provides information on:
• Which workflow document to use.
• Tasks and approvals that can be configured by the user.
• Workflow categories used for assigning a workflow template to a specific module.
Workflow category:
The workflow category determines whether a workflow template is available in a specific module. After a workflow
category is created, it is possible bind the workflow category to a workflow template.


Workflow Configuration:
A Workflow Configuration is bound to a single Workflow Template, and there can be multiple Workflow Configurations
for the same Workflow Template. Only a single Workflow Configuration for each WorkflowTemplate can be the default WorkflowConfiguration. The Workflow Configuration captures what tasks will be executed, who the tasks are assigned
to.
Workflow Query:
Dynamics AX workflow uses a query to set up conditions for a workflow. The query identifies which data is available to workflow users. Queries are bound to Workflow templates. Once the query is created, a Workflow class needs to be created which contains the query name & any calculated fields.
Workflow Tasks:
AX workflow tasks are used to track documents or tasks from the start to the end of a work process. A workflow may
contain one or many tasks. Each task contain one step.

Workflow Approvals:
Workflow Approvals are used to track ststus of Workflow documents . The fixed outcomes are ‘Approve’, ‘Reject’, or
‘Request Change’.

After you create a task, approval, or outcome in a AX workflow, it must be added to a menu item. The end-user can then start the task or approval using the menu item as a part of the workflow process.
Workflow can be activated throughout the various lifecycle stages of a business document: Create, Update, Delete, Post. The Workflow runtime will execute the Workflow and assign Tasks to users. Users interact with theWorkflow through Alerts/Workflow Tasks, from where they can take action (Approve, Reject) or they can navigate to the business document and view all details before taking the workflow action.
Apart from these basic concepts, there are concepts like Implement Providers, Event Handlers which I will explain in a later post.

Saturday, June 14, 2008

Using AX .NET BC to create Purchase Orders

A small but nice project to create multiline Purchase Orders in AX from a .NET Windows application. In this small POC, there is a Windows Application (C#) which uses the .NET BC to create PO into AX. Its a simple demo but can be extended to other areas like journals, Sales Orders , Inventory Transactions (any multiline header - detail type). For this a small class is written inside AX which exposes the logic. I have used the AXPurchTable() & AXPurchLine() classes to enter PO in AX. There is a similar post in MSDN (Using Axapta Business Connector to Create Microsoft Business Solutions–Axapta Sales Orders) but that uses the COM Connector & consists only of a single line. This sample can support multiline PO :). I have not worked too much on the validations & other advanced areas. The C# code also may not be the best :) but its simple.

The video on how to use it is attached below [Assumes that the current logged in user has User rights to AX]


I have also uploaded all source files in the link below. To run the exe, you must import the xpo inside AX. I have used AX 4.02 to make this demo.


Let me know if anyone has a better way of doing this.
Happy DAXING :)

Friday, May 23, 2008

AX 2009 Release

AX 2009 is now RTM (Release To Manufacturing). Please check link at Partnersource to download.The Microsoft Dynamics AX 2009 download is a full install and required for new installations or upgrades from previous versions. Microsoft Dynamics AX 2009 supports upgrades from Microsoft Dynamics AX 3.0 Service Pack 4 (or higher) or Microsoft Dynamics AX 4.0 Service Pack 1 (or higher).

Download AX 2009 [Requires Authentication]

Monday, May 19, 2008

A preview of Dynamics AX 2009 with the Dynamics team

A new video is published on Channel 9. You'll get an overview of the Dynamics systems architecture and see demos of their extensibility layer with Client/Web architecture. Click image to watch video.