DirParty Cleanup
There are times, especially pre go-live when you are importing data into the system and need to clean things up. Recently I needed to remove some customers and associated contact, but I found the...
View ArticleThe Future of Field Service: Sales, Big Data, Mobility, and Internet of Things
Field service has always been fairly complicated, from how it's charged to how it's delivered. It stretches across multiple dimensions of time and geography, and involves an intricate dance of customer...
View ArticleCreating a new item for use with R3 WMS
This is a quick walk through of setting up a new item for usage with the AX2012 R3 warehouse management processes. This is just a simple item so you get the flow and the key setup pieces relevant to...
View ArticleMicrosoft Dynamics Partner Roundup: AX public sector win; GP go-live; CRM for...
In this week's Microsoft Dynamics partner news roundup: Albemarle County Service Authority Taps Tyler Technologies for Dynamics AX; Huddle House Goes Live with Dynamics GP; eLogic Selected Dynamics...
View ArticleA Smart Microsoft Cloud Architecture for Business Analytics
With the emergence of the cloud as a popular deployment option, many vendors are making their solutions available as cloud offerings, including Microsoft, which has gone full bore as a cloud solutions...
View ArticleERP Business Intelligence: Review of Microsoft Dynamics Reporting Tools &...
In the previous Turnkey Technologies BI Blog, we defined BVDs (BI Value Differentiators) and identified Analysis Cubes for Excel (ACE) as a low cost bolt-on BI system for GP with re-usable calculated...
View ArticleImporting Customers
Below is an example of how to import Customers (Organisations) with AX++ code. CustTable CustTable; DirOrganization dirOrganization; LogisticsLocation logisticsLocation; LogisticsPostalAddress...(read...
View ArticleError: Sales is not marked as Direct delivery and an intercompany vendor...
In case of you are intended to create a direct delivery for end customer through an Intercompany purchase order using Direct Delivery function, you may receive an Infolog error message "Sales is not...
View ArticleCustom rules for Code Upgrade Tool
The Code Upgrade Tool allows you to detect patterns in X++ code and even to automatically change code. It’s especially useful for code upgrade, because you can easily upgrade legacy code. For example,...
View ArticleIn government contracting, ERP systems integration is essential, but can be...
Technology vendors often fudge or exaggerate when it comes to integration. When their customers hear “integration,” they expect at the very least that two or more applications will connect in such a...
View ArticleObjects ignored by Code Upgrade Tool
When testing my new rule for code upgrade tool, I found that certain objects are skipped and rules are not checked for them. That makes the tool significantly less useful, because you can’t be sure...
View ArticleBenefit and Deductions for Employees in AX 2012
This post is specific to a single employee enrolment and removal from a Benefit. At times, we do need to get information related to employee’s enrolled benefit plans. For this purpose, AX 2012 has...
View ArticleImporting Contacts
Below is an example of how to import Contacts with AX++ code for customers. DirPerson DirPerson; DirPersonName DirPersonName; LogisticsLocation logisticsLocation; LogisticsElectronicAddress...
View ArticleSorting records
Sorting records Sorting is the most important thing when display the data to the user. The user mostly prefers sorting functionality in the grid forms. AX 2012 has inbuilt functionality to sort the...
View ArticleUXC Eclipse Selects Data Masons Software to Boost its Technology Portfolio...
PRESS RELEASE:[December 15, 2014] Data Masons Software, a leading provider of Integrated EDI and XML solutions for Microsoft Dynamics customers, announces a strategic partnership with UXC Eclipse, a...
View ArticleGet from X++ QUERY to get SQL query using getSQLStatement() for trouble...
getSQLStatement is a new method that has been introduced in tables in AX 2012. Use getSQLStatement() method to get the SQL query from the X++ query to use for trouble shooting. The X++ select has...
View ArticleAccounting for Purchase charge and Stock variation
Dear readers,The SCM-costing team is happy to announce that an update for the "Post to charge" accounting principle is finally ready.The update includes a significant change in the ledger accounting...
View ArticleODBC connection properties – setOther()
I’m working on an implementation that interfaces Dynamics AX to a number of external systems using an Enterprise Service Bus.The Enterprise Service Bus uses tables in a SQL Server database so we’re...
View ArticleFiltering records
Filtering records Filter the records is the important part to display the data. By using the filter we can display the necessary data and avoid showing the unnecessary data based on the requirement....
View ArticleCreate a new record in the opened form
Create a new record in the opened form We can insert the record by using the below code. This is the normal procedure, creates new table buffer, assign values and call insert method. void clicked() {...
View Article