I found this article on Microsoft Technet which describes how to setup the data-import correct when importing duplicate company data within the same application. Import duplicate company data to use for testing [AX 2012]
Måned: juni 2013
Microsoft Dynamics Ax
X++ code to Count Records in Query
by Bo Jensen •
Following code illustrates how we can use SysQuery::countTotal() method to get the number of records in Query. static void Query_cntRecords(Args _args) { Query query = new Query(); QueryRun queryRun; QueryBuildDataSource qbd; ; qbd = query.addDataSource(tablenum(CustTable)); queryRun = new QueryRun(query); info(strfmt("Total Records in Query %1",SysQuery::countTotal(queryRun))); } Microsoft Dynamics…
Sharepoint
Resolving "The super user account utilized by the cache is not configured."
by Bo Jensen •
If you have a SharePoint Publishing site and you check the event viewer every once in a while you might see the following warning in there: Object Cache: The super user account utilized by the cache is not configured. This can increase the number of cache misses, which causes the page requests to consume…
