How to create a custom number sequence

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...