-
Clicked method of a button in a form using Extensions/Event handler in D365
1. Create extension of ‘CustInvoiceJour’ form 2. Open extension of that form from the solution explorer and add a button 3. We have added a button, now we have to perform some operations on click of that button. And for that we need to write the ‘OnClicked’ event. In order to do that, expand the […]
-
Dynamics AX 365 – insert not allowed for fields In Data Entity
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 […]
-
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 […]
-
Speeding up Data Uploads– D365 for Finance and Operations
Have you ever wondered if there is a better way to import large Excel files into D365 Finance and Operations? Using the standard Data Management workspace to upload files is relatively easy, but on the complexity of the import, it can take hours to get your data into D365. This is especially true for imports that […]
-
COC (Chain of command) Or Method wrapping in D365 F&O
Microsoft has improved the functionality of class extension for D365FO by adding wrap logic around methods which are defined in the base class that you are augmenting. Apart from this now you can extend the logic of public and protected methods without using event handlers. After wrapping a method, you can access its public and […]
-
Extension(CoC) class for DP classes in dynamics 365 finance and operations x++
Recently I gone through creating an extension class known as CoC for a DP for inserting some values for header and lines in purchase order confirmation report. This will give you an idea how to extend methods. Please change it according to your requirement. [ExtensionOf(classStr(PurchPurchaseOrderDP))]final class PurchClass_PurchPurchaseOrderDP_Extension{ protected PurchPurchaseOrderTmp initializeOrderLine( PurchPurchaseOrderHeader […]