I've noticed that Access templates commonly use an Orders table and an OrderDetails table.
As I began developing this inventory database I have implemented this as Transactions and TransactionDetails. However, I have some problems tying various queries together and creating a certain feel and look for a form for a particular user - the main one!
So, I am wondering why use a separate Details table, and secondarily, do I need one?
Transactions:
TransID
TransDate
UserInitials
TransactionDetails:
TransDetailID
PartLocID_FK
TransTypeID_FK
TransID_FK
QuantityTaken
ReportedQtyLeft
Thanks,
Mike
As I began developing this inventory database I have implemented this as Transactions and TransactionDetails. However, I have some problems tying various queries together and creating a certain feel and look for a form for a particular user - the main one!
So, I am wondering why use a separate Details table, and secondarily, do I need one?
Transactions:
TransID
TransDate
UserInitials
TransactionDetails:
TransDetailID
PartLocID_FK
TransTypeID_FK
TransID_FK
QuantityTaken
ReportedQtyLeft
Thanks,
Mike