I'm creating a database whose sole purpose is to look into my ERP systems quoting module, and output a spreadsheet that I can suck into my engineering software.
The quoting module has relevant "Assembly Codes", which is the assemblies primary key. The engineering system requires the product name in the spreadsheet to match a product name in it's library to work successfully.
The trick is it is not always a 1 to 1 relationship. Several of the assembly codes in the quoting module align with two different engineering products (Essentially a Left or Right of the assembly Code).
When the app builds the import data in the background, if more than one record exists for a given assembly code, it will prompt the user to pick the correct one.
I'm struggling with whether my data requires a junction table, or if I can get away with just one table (for my engineering products), and a field for the quoting module's assembly code. I could easily search this table in a recordset, and determine if more than one record exists for a particular code, then prompt the user....
Thoughts appreciated!
PS....Mods, why am I still a "Newly Registered User", after 287 posts, and 3 years?
The quoting module has relevant "Assembly Codes", which is the assemblies primary key. The engineering system requires the product name in the spreadsheet to match a product name in it's library to work successfully.
The trick is it is not always a 1 to 1 relationship. Several of the assembly codes in the quoting module align with two different engineering products (Essentially a Left or Right of the assembly Code).
When the app builds the import data in the background, if more than one record exists for a given assembly code, it will prompt the user to pick the correct one.
I'm struggling with whether my data requires a junction table, or if I can get away with just one table (for my engineering products), and a field for the quoting module's assembly code. I could easily search this table in a recordset, and determine if more than one record exists for a particular code, then prompt the user....
Thoughts appreciated!
PS....Mods, why am I still a "Newly Registered User", after 287 posts, and 3 years?