Dynamics AX 365 – insert not allowed for fields Data entity related Solution 1:1. Data entity and staging table those error fields shouldn’t set property for AllowEdit and AllowEditOnCreate to “NO”.2. Chaneg those field property to “Yes”3. Rebuild solution and SYNC DB4. Refresh entity List Solution 2:1. Code: this. skipDatasourceValidationField(FieldNum(<DS Name>, <DS Field Name>), true);2. Write…
Month: April 2021
Microsoft Dynamics AX/365 Finance and Operations Development Blog
TECHNICAL BLOG ABOUT DYNAMICS AX 2012 AND DYNAMICS 365 FOR FINANCE AND OPERATIONS Upload attachments to SharePoint Online Some weeks ago, I got a task to implement a functionality with which document attachments can be uploaded to SharePoint Online. In this blog I want to explain and show how this can be done. Of course, to…
Copy data into another D365FO company
In this article, we will show you how you can easily copy data from one company (or “legal entity”) to another in Microsoft Dynamics 365 for Finance and Operations (D365FO), using the Data Management Workspace and the Data Import Export Framework, known as DIXF. In this article Data Management Workspace Data entities Destination companies Improve copy speeds Copy data…
Configuration of Data Templates for Seamless Data Import/Export in Dynamics 365
The Data Management Framework of Dynamics 365 For Finance and Operations – Enterprise Edition provides advanced data management capabilities which makes the overall data export and import really seamless easy, for both standard Dynamics 365 data entities as well as any custom entities that you might have development for your business requirements. This framework provides a easy…
Class extension via method wrapping and Chain of Command (CoC)
The functionality for class extension, or class augmentation, has been improved in Microsoft Dynamics 365 for Finance and Operations. You can now wrap logic around methods that are defined in the base class that you’re augmenting. You can extend the logic of public and protected methods without having to use event handlers. When you wrap…
Install deployable packages from the command line
Key concepts Deployable package – A deployable package is a unit of deployment that can be applied to any environment. It can consist of a binary hotfix to the runtime components of Application Object Server (AOS), an updated application package, or a new application package. AXUpdateInstaller – AXUpdateInstaller is an executable program that is bundled in the…