How to pass values from form to report
How to pass values from form to report1. Make the report as Interactive.2. Create MethodinitFromCallerand pass the args to it. 3. Set the report caption (it will appear in dialog)/. 4. The...
View ArticleAX 2012 R2 Step By Step Installation Guide
AX 2012 R2 Step By Step Installation As you know the much awaited AX 2012 R2 is launched. I just installed AX on my local computer, So i am just sharing some screen shots for your reference to install...
View ArticleHow to pass values between form and report
How to pass values between form and reportHere is for example the code of the button that calls the report: void clicked(){ Args args; ReportRun reportRun; ; super(); args =...
View ArticleList view Control in Dynamics AX
Hi Friends, Here is step by step Tutorial for ListView FormControl. During this tutorial we create a separate Form (just for testing this tutorial). ListView Control helps you when you want to select...
View ArticleError: Error executing code: Wrong argument types for comparison....
I faced a issue when I select a record on form, Error executing code: Wrong argument types for...
View ArticleDynamics AX – Passing parameters between object – What is args??
Hi Friends,ARGS is your friend in the world of AX (me also :) ). It allows you to pass records, the calling locations (form, report, query etc) , ENUMS and the list goes on! Simple declaration of args...
View ArticleAdd multiple range and multiple table lookup
Add multiple range and multiple table lookuppublic void lookup(){SysTableLookup tableLookup;QueryBuildRange rangeTransDate;QueryBuildRange vlgCode,ItemId,DistCode,talCode;QueryBuildRange...
View ArticleAxapta Interview Questions- Part II
Interview Questions for Axapta 2009/2012In my previous post i share some Interview questions with you, here are some new question.... What is the difference between fetch() in send() in axapta?What is...
View ArticleGenerates the index for the base enums
Generates the index for the base enumsstatic void baseenumid(Args _args){dictenum dictenum;int i;;dictenum = new dictenum(enumname2id('NumberSeqModule'));for(i=0;i<dictenum.values();i++){print...
View ArticleCode to play sound in axapta
Code to play sound in axapta static void ExemploPlaySound(Args _args){ System.Media.SoundPlayer YourMPlayer; ; YourMPlayer= new System.Media.SoundPlayer();...
View ArticleHow to find your object in AOT projects
How to find your object in AOT projectsThis is a small but precious tool for AX developing. Have you ever tried to find in which projects your objects are included? Yes, I have... Not so easy to search...
View ArticleNo print management settings are applicable so no document is produced.
No print management settings are applicable so no document is produced.Error: No print management settings are applicable so no document is produced.When u trying to print a report some times its throw...
View ArticleIntegrating Axapta with Microsoft Outlook
Integrating Axapta with Microsoft OutlookIn Microsoft Dynamics AX 4.0, you can set up the Microsoft Office Outlook Integration to integrate contacts, tasks and appointments between Microsoft Dynamics...
View ArticleDocument handling via X++
In my previous post Document handling In Dynamics ax , I post step by step tutorial to use base functionality of document handling. Today i Shared dirty code for document handling via X++ code.Well...
View ArticleInstalling Oracle Database 11g Release 2
Step-by-step instructions for installing Oracle Database 11g Release 2Here are step-by-step instructions for installing Oracle Database 11g Release 2 on Windows 7. It’s provided in response to...
View ArticleInstalling Microsoft SharePoint Foundation
Installing Microsoft SharePoint FoundationNote: Microsoft SharePoint Foundation (MSF) can be only installed on a 64-bit hardwareRecently i installed MSF on my local system , I just sharing my exp about...
View ArticleHow to Connect the Host Hard Drive to a VirtualBox OS
How to Connect the Host Hard Drive to a VirtualBox Guest OSVirtualBox from Oracle is an amazing and free application if you like testing different operating systems without messing up your original...
View ArticleExporting data to Excel from axapta x++
Exporting data to Excel from axapta x++Hi All! Sometimes we need to export data from Microsoft Dynamics AX to Excel using axapta x++ code and we don't know how to do this...Exists some differents ways...
View ArticleDynamics AX – Form lookups and how they work
Dynamics AX – Form lookups and how they workThere are few different ways to achieve a lookup field on a form. 1.) Create an Extended data type – EDT123 2.) Create a table Table123 3.) Add EDT123 to the...
View ArticleEnterprise Portal development
Enterprise Portal development (AX 2009)We Will complete this tutorial in four steps as:Step 1 – the prerequisitesStep 2 – Understanding proxiesStep 3 – Visual StudioStep 4 – Debugging in Visual...
View Article