Can someone explain why a field on the many side of a one-to-many relationship, with referential integrity enforced, is not automatically updating?
I have 5 tables in my database with the following relationships:
Transactions (1-Many) Transaction Details (1-Many) Deliveries
Order Codes (1-Many) Transaction Details
Order Codes (1-Many) Inventory (1-Many) Deliveries
Order Codes (1-Many) Deliveries
All relationships are set to enforce referential integrity
I have one form with a subform to enter new transactions, based on Transactions & Transaction Details
I have another form for deliveries with 2 subforms, based on Transactions, Transaction Details & Deliveries
Both forms work as expected except that the OrderCodeID field in the Deliveries table is not being populated.
Deliveries Table has the following structure:
DeliveriesID
TransactionDeta ilsID
OrderCodeID
InventoryID
DeliveryDate
ConsignmentNumb er
TransactionDeta ilsID & InventoryID are correctly populated with the respective ID number but OrderCodeID remains blank
I have 5 tables in my database with the following relationships:
Transactions (1-Many) Transaction Details (1-Many) Deliveries
Order Codes (1-Many) Transaction Details
Order Codes (1-Many) Inventory (1-Many) Deliveries
Order Codes (1-Many) Deliveries
All relationships are set to enforce referential integrity
I have one form with a subform to enter new transactions, based on Transactions & Transaction Details
I have another form for deliveries with 2 subforms, based on Transactions, Transaction Details & Deliveries
Both forms work as expected except that the OrderCodeID field in the Deliveries table is not being populated.
Deliveries Table has the following structure:
DeliveriesID
TransactionDeta ilsID
OrderCodeID
InventoryID
DeliveryDate
ConsignmentNumb er
TransactionDeta ilsID & InventoryID are correctly populated with the respective ID number but OrderCodeID remains blank
Comment