Unless you have a really slow link or a really heavy server load (and I mean
-really- heavy), I usually just recommend using batch tables. Everyone makes
their edits into a table filtering on their own batch ID, then you run a stored
procedure to post the batch. The batch table can also double as a historical
transaction log.
Thanks for the reply.
I'm sorry I'm still trying to get the hang of ADp / SQL Server projects. If
I could just run through what you suggested...
1. Create a new table on the server. This table takes the same structure as
the current line items table with an additional field containing the batch
ID of the current set of items.
2. When users enter a line item, it is included in the batch table which is
sourced to my text box filtered on this particular ID.
3. When a user has entered all the line items, the records in the batch
table for this order are included in the line item table proper....
I think I can do it....
This system isn't going to get that big (I'd say it won't get over 10K
records), I just want the practice of developing an ADP project!
However, thanks for your help. Please let me know if my understanding is
wrong! I'll let you know how I get on.
Thanks
Chris.