NAV Report - How To Use Excel SUMIF Function?
Hi all,I think most of us know SUMIF Function IN Excel, Those who don't know below is a sample.Suppose i Export my Item Ledger Entries Data in Excel. Now i want to see the Total Quantity Sum where...
View ArticleKeyboard Shortcuts for Microsoft Dynamics NAV
Following table provides the shortcut key combinations in the Microsoft Dynamics NAV windows client and the Microsoft Dynamics NAV Development environment. Microsoft Dynamics NAV Windows client...
View ArticleJSON oder XML zu C# Klassen
Häufig kommt es vor das man gerne JSON oder XML deserialisieren möchte, um die Vorteile einer stark typisierten Sprache wie C# zu nutzen. Nun es ist jedoch relativ langweilig die entsprechenden...
View ArticleAIF Service Common Usage Scenarios in ax 2012
AIF Service Common Usage Scenarios in ax 2012 Custom Services: Use to expose very simple business entities as a service, or to expose custom logic from Microsoft Dynamics AX. This Service enables...
View ArticleEnterprise portal common methods in ax
Get field value from enterprise portal Below code will help to get the value of the field from enterprise portal we can retrive the value from Grid / group / form using below code DataSetViewRow...
View ArticleCommon Enterprise portal Grid methods
Common Enterprise portal Grid methods private DataSetViewRow CurrentExpenseHeaderRow { get { DataSetView dsv = this.DS_TrvExpTable.GetDataSet().DataSetViews[“TrvExpTable”]; return (dsv...(read more)
View ArticleShow / hide fields in AXgroup / grid in Enterprise portal
Show / hide fields in AXgroup / grid in Enterprise portal How to enable\ disable fields in Grid foreach (DataControlField dcf in this.AxGroup_ExpenseHeaderOverviewLeft.DataControlFieldCollection)...
View ArticleUpload document through EP
Upload document through EP To provide document attachement feature on EP form to upload documents, need to follow below setps 1-Add new datasource by using EPDocuInfoAdd data set from AX 2-Add...
View ArticleUsing the infolog in the Enterprise Portal ax 2012
In the portal you can access the infolog by using the Proxy of the Enterprise Portal. using Proxy = Microsoft.Dynamics.Framework.BusinessConnector.Proxy; Proxy.Info objInfoLog = new...
View ArticleAustralian Data Centre Bug Workaround – “Invalid Argument” in...
Recently it’s been reported by my colleague and a fellow Australian CRM MVP, Guy Riddle, that there is a bug on Australian CRM Online on Workflow/Business Process Flow editor that showing “Invalid...
View ArticleDCPromo – How to Install Active Directory on Windows Server
http://www.youtube.com/embed/7AdF4DeKh2c(read more)
View ArticleWorking with Valid Time State Table in AX 2012
http://axtechhouse.wordpress.com/2011/07/15/working-with-valid-time-state-table-in-ax-2012/(read more)
View ArticleTempDB error when calling linkPhysicalTableInstance
I got this when using a TempDB table in a form as a datasource: " Cannot execute the required database operation.The method is only applicable to TempDB table variables that are not linked to...
View ArticleUniversal Excel Import Export
Do you know "Universal Excel Importer"? We have it on new NAV, from NAV 2013. Simply import data from Microsoft Excel with 4 steps: Step 1: Browse Excel file. Step 2: Select Excel Sheet...(read more)
View ArticleDefault index for a table in AX / X++ Or System index in ax
System index: Microsoft dynamics ax requires index on each table. If there are no indexes on a table or all the indexes are disabled, a system index is automatically created. The system index is...
View ArticlePosting Groups #16 – FA Depreciation Posting
Depreciation is a method of allocating the cost of a Fixed Asset over its useful life. In NAV for this purpose, you can run batch job Calculate Depreciation. In this posting process, system will use...
View ArticleGenerating the outbound xml file for all records using File system adapater...
Generating the outbound xml file for selected record or single record – using document service(file system adapter). Generating the outbound xml file for all records( i.e. specified criteria on...(read...
View ArticleAuto expand whole tree in FormTreeControl
If you have a Tree control on your form and want to expand the whole tree with all items and subitems at once, you can use the following static method:...
View ArticleShort code: name of current user
The old fashioned way to get the name of the current user is to select the record from UserInfo: UserInfo userInfo; select firstOnly name from userInfo where userInfo.id == curUserId(); Instead...(read...
View ArticleJumpRef lookupRecord
When there is the need to override the jumpRef method manually on a form, sometimes it seems to have a problem with the args.record parameter of the args and doesn’t jump to the right record....
View Article