Join us at the Dynamics Experience in Hilversum (Dutch)
Volgende week is het al zover, op donderdag 3 September wordt de Dynamics Experience georganiseerd in Hilversum.Dit is het evenement voor Dynamics gebruikers in Nederland, zowel AX, CRM als NAV komen...
View ArticleYammer enables User Lifecycle Management from Office 365
I have blogged earlier about the lack of a proper security and administration model for Yammer . Moreover this is one the reasons why I advised against integrating Yammer with Dynamics CRM Online....
View ArticleHow to change welcome/login screen in Web client
When we try to open web client then we get below login screen by defaultIf we want to change the login screen then we have to modify Header.png file in below...
View ArticleList AOS services with colors
Here I have a little Powershell script, written mainly for demonstration purposes, nevertheless it does its job and may be useful to somebody.It connects to any number of servers, finds Dynamics AX AOS...
View ArticleAX suggestion: XML Columns and XML indexes
In AX we have the following datatypes we can use in table fields. But in MS SQL server there is a XML data type. With the XML data type we can store XML documents in the SQL Server database. And we can...
View ArticleDesert island customisations 3 of 8
Counting down of my favourite modifications. There are lots of variants of this one, and this variant was developed by Steve Koppens (lately of Intergen, now of Microsoft). It’s a customisation...
View ArticleVote now for the NAVUG All-Stars!
The NAVUG All-Star Award program recognizes NAVUG members who have a passion for Microsoft Dynamics NAV and have made significant contributions of their time and expertise to educate and connect the...
View ArticleVisual Studio 2015 is here!
To boost your productivity,You can try to click this link:Click me!And have a look..Thanks.
View ArticleHow to open pdf files from Ax using X++ in Ax 2012
Originally posted on Learn Dynamic Ax with Johnkrish : static void Johnkrish_OpenPdfFileInAx(Args _args) { Filename pdfFileName = ‘123.pdf’; FilePath pdfFilePath = @’E:’; str adobeExe; System...(read...
View ArticleXpo file importing through X++ code in Ax 2012
Originally posted on Learn Dynamic Ax with Johnkrish : This code helps to import an XPO using X++ static void importXPO(Args _args) { SysImportElements sysImportElements = new...
View ArticleHow to use Having in Ax 2012
Originally posted on Learn Dynamic Ax with Johnkrish : static void Johnkrish_Have(Args _args) { Bill_TabMethod_1 billtab; while select sum(Quatity) from billtab group by CustName where...
View ArticleUsing custom Image resource in Dynamics AX 2012
Originally posted on Learn Dynamic Ax with Johnkrish : Dynamics AX 2012 allows developers to include their custom images in form‘s or report’s. However, to use this a little bit tweaking is needed....
View ArticleSet query range for Two Date ( FromDate To Date) field in a table in Ax 2012
Originally posted on Learn Dynamic Ax with Johnkrish : static void DateRangeTest(Args _args) { DateRangeTest drt; Query query=new Query(); QueryRun qrun; QueryBuildDataSource qbds;...
View ArticleHow to: Enable and Disable an Action Pane Button on a List Page using...
Originally posted on Learn Dynamic Ax with Johnkrish : To enable or disable an action pane button In the AOT, expand Forms and find the form for the list page where the action pane button...
View ArticleDisplay the Date by calculating the user value added to the day,month,year...
Originally posted on Learn Dynamic Ax with Johnkrish : utcDateTime t; t=DateTimeUtil::newDateTime(today(), 0, DateTimeUtil::getCompanyTimeZone()); if(InventTable_Warperiod_MTI.valueStr()==...(read more)
View ArticleHow to Display SSRS Report into Enterprise Portal in Ax 2012
Originally posted on Learn Dynamic Ax with Johnkrish : Step1: After Creating the SSRS in AX,we need to add that into output menuItem with proper label. Here label is very important because it...(read...
View ArticleHow to get Table field properties through X++ Code in Ax 2012
Originally posted on Learn Dynamic Ax with Johnkrish : static void GetTableProperty (Args _args) { TreeNode johnFldsRoot = treeNode::findNode(@”Data DictionaryTablesJohnTestTableFields”);...
View ArticleHow to Get Worker Information in Ax 2012
Originally posted on Learn Dynamic Ax with Johnkrish : In Microsoft Dynamics AX 2012, hcmWorker table just consist of 2 fields. But from this table we can get many information about worker. For...
View ArticleHow to get Product Dimension Group Name by giving Product Id/Item Id in Ax 2012
Originally posted on Learn Dynamic Ax with Johnkrish : static void JK_FindProductDimensionGroupByItemId (Args _args) { InventTable it; EcoResProductDimensionGroupProduct erpdgp;...
View ArticleCreate Simple Display method in Ax 2012
Originally posted on Learn Dynamic Ax with Johnkrish : I have two tables that are AX developers always come across a requirement of showing data from different datasources on the same control...
View Article