Aware has one master list of the next assigned number, so, for instance, if it is currently 1,000 and I enter 10 orders, then 10 payments, then 10 more orders, my order file has IDs of 1,000-1009, 1020-1029. The customer would like a contiguous range of order #'s (which, is diff from the unique ID that Aware assigns)
I can think of 2 ways to do this.
1) Create a new BO with 1 record with an attribute "nextOrderNumber", "nextPaymentNumber", etc. and then, I would increment this anytime I create a new order. While this does embrace the "Aware" philosophy, I can see both a lot of extra work and some potential errors in a multi-user system
2) Once aware creates the table, use SQL to change the quoteNumber field to an IDENTITY field. (Yes, I am using MSSQL). This seems easy, less work and there is no way I can ever get duplicate order #'s.
Anyone else have this requirement? Found a better solution?
Thanks
Bruce