I am trying to set up multiple primary keys to uniquely indentify record with three fields in the paymentlink table.
Key fields for the paymentlink table are
Contract
member
receipt date
The enduser will interface with this table using a form to enter values in these fields. The Contract field will automatically populate in the form once user selects it through a combobox. The overall objective is to associate contract and receipt date with member and to allow the user to edit and delete records from the form. Once and edit or delete is performed the other tables will automatically be updated.
All field can have duplicate values but once all put together there would be only one unique record. These fields are also replicated in two other tables-Paymentamount and Settlement, respectively . However, I want to make the paymentlink table the controlling table and establish one-to-many relationship between this table and the paymentamount and settlement table using these three field. Is this possible to do? Any help would be greatly appreciated.
Key fields for the paymentlink table are
Contract
member
receipt date
The enduser will interface with this table using a form to enter values in these fields. The Contract field will automatically populate in the form once user selects it through a combobox. The overall objective is to associate contract and receipt date with member and to allow the user to edit and delete records from the form. Once and edit or delete is performed the other tables will automatically be updated.
All field can have duplicate values but once all put together there would be only one unique record. These fields are also replicated in two other tables-Paymentamount and Settlement, respectively . However, I want to make the paymentlink table the controlling table and establish one-to-many relationship between this table and the paymentamount and settlement table using these three field. Is this possible to do? Any help would be greatly appreciated.