Hello all,
I'm creating an database of issues that occur at my company in access, and I need some help with a little bit of table design.
Right now, I have an Issues table that has the following fields:
ID - Autonumber (PK)
User - Lookup to a table of users
IssueDate - date/time
WhatHappened - Memo
SupervisorApproval - Yes/No
I've created forms for users to use for entering issues, searching for issues and viewing issue details.
Now, I want supervisors to be able to add (multiple) comments to each issue when they approve/reject an issue. I figured the two ways of doing this would be:
1) Create a "Comments" memo field in the Issues table, and create a form with a textbox where a new comment is appended to any previous comments with the date and user's name.
2) Create a Comments table that stores the user's name, date, time and the comment, and create multiple forms to create and view the comments for each issue.
I've tried implementing both, and I keep getting weird locking issues with #1 (it says that another user is currently editing the field, then displays "?#Deleted"). I would use #2, but the complexity added with all of the forms to create and view comments might be annoying for the end users, as well as for me.
My questions are:
Why would I be getting the locking issues with #1?
Does anyone have other suggestions for implementing this?
I'm creating an database of issues that occur at my company in access, and I need some help with a little bit of table design.
Right now, I have an Issues table that has the following fields:
ID - Autonumber (PK)
User - Lookup to a table of users
IssueDate - date/time
WhatHappened - Memo
SupervisorApproval - Yes/No
I've created forms for users to use for entering issues, searching for issues and viewing issue details.
Now, I want supervisors to be able to add (multiple) comments to each issue when they approve/reject an issue. I figured the two ways of doing this would be:
1) Create a "Comments" memo field in the Issues table, and create a form with a textbox where a new comment is appended to any previous comments with the date and user's name.
2) Create a Comments table that stores the user's name, date, time and the comment, and create multiple forms to create and view the comments for each issue.
I've tried implementing both, and I keep getting weird locking issues with #1 (it says that another user is currently editing the field, then displays "?#Deleted"). I would use #2, but the complexity added with all of the forms to create and view comments might be annoying for the end users, as well as for me.
My questions are:
Why would I be getting the locking issues with #1?
Does anyone have other suggestions for implementing this?