Posts

Showing posts from May, 2025

How to create a custom number sequence

Image
  How to create a custom number sequence in Dynamics. To create a custom number sequence, you need the following: 1. An EDT for the number sequence. EDT is called extended data type, an extension of the primitive data types in Dynamics, which includes: anytype, boolean, date, enum, guid, int, int64, real, str, timeOfDay, utcdatetime. 2. Extended the class for managing number sequences in Dynamics (NumberSeqApplicationModule) 3. Override the class's load module method. This method is protected, which means it can only be accessed by its definition class and subclasses. 4. Specify the specific module you would like the number sequence to be, by returning the specified enum. 5. Subscribe to the build modules map method of the Number Sequence Global class(NumberSeqGlobal). 6. Run the load module as a job class to initialise the number sequence on the parameters module. 7. Run the number sequence wizard to generate the value on the parameters module. Let's assume we want to create...

Integration Capabilities and Support in Microsoft Dynamics 365 Finance & Operations (F&O) - An Overview

Image
Integration Capabilities and Support in Microsoft Dynamics 365 Finance & Operations (F&O) : Title: Unlocking the Power of Integration with Microsoft Dynamics 365 Finance & Operations In today’s fast-paced digital economy, businesses require agile, connected systems to manage operations effectively. Microsoft Dynamics 365 Finance & Operations (F&O) stands out by offering robust integration capabilities, allowing organizations to streamline operations, improve data consistency, and enhance productivity across platforms. This blog post explores the various integration options and support mechanisms that make Dynamics 365 F&O a top choice for enterprise resource planning (ERP). 1. Data Management Framework (DMF) The Data Management Framework , also known as the Data Import Export Framework (DIXF), is one of the core components for integrating data into and out of Dynamics 365 F&O. Key Features: Staging and target data model: Ensures validation before...