Given: tblCust, tblTrans, tblDocs
1 cust has many transactions; 1 trans has many documents
however, a customer's 2nd transaction may be similar to its first transaction. Therefore, an identical list of docs will be used for the 2nd trans. (I have considered many-to-many relationship....it's possible but not necessary or wanted.)
So, what is the easiest way to set up user-duplication of the doc-set? (i.e., user clicks button that duplicates the doc-set and asks for the new transaction number)
I can SELECT the docs from the 1st trans (qryDocs_tmp) and append to a new table (tblDoc_tmp) and then append that table to the original tblDoc. I am using autonumber for the primary key so some manual manipulation of the primary key would be necessary. This seems like a round-about way of getting a simple duplication of a record set.
thanks to all -- you're a smart bunch of folks.
1 cust has many transactions; 1 trans has many documents
however, a customer's 2nd transaction may be similar to its first transaction. Therefore, an identical list of docs will be used for the 2nd trans. (I have considered many-to-many relationship....it's possible but not necessary or wanted.)
So, what is the easiest way to set up user-duplication of the doc-set? (i.e., user clicks button that duplicates the doc-set and asks for the new transaction number)
I can SELECT the docs from the 1st trans (qryDocs_tmp) and append to a new table (tblDoc_tmp) and then append that table to the original tblDoc. I am using autonumber for the primary key so some manual manipulation of the primary key would be necessary. This seems like a round-about way of getting a simple duplication of a record set.
thanks to all -- you're a smart bunch of folks.