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…
Month: April 2021
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 …
Create a Runbase batch class in AX 7.0 / D365 F&O X++ code
Recently got a requirement to create a run base batch for posting inventory journals.So, I created below class. Please change the code according to your requirement. Step 1 – Copy and paste the below code in a new classStep 2 – Create a new action button and attach the class to it.Step 3 – Add…
D365 FO: Different ways to deploy SSRS Reports
There are two ways to deploy the SSRS reports in D365 for finance and operation. The first choice would be to deploy the report directly from Visual Studio. Open the Build menu, click Deploy. Alternatively, in Solution Explorer, right-click the report project and then click Deploy. In Solution Explorer, right-click the report and then click…