Hi there,
Working on a project management system.
I have:
- a table “people” (person_id/name/city/password/email).
- a table “projects” (proj_id/proj_name/proj_description)
- a table “project_access” (proj_id/person_id/access_type)
I want to make an interface so that, if you’re working on a project, you can select many people from the “people” table and add them to the project_access table for the project you’re working on.
NOTES:
- The “people” table has over 10,000 entries, and often you need to add 1000 of them to the project!
- So, it needs to be really fast for the user (like one click or a checkbox) to add someone, since they’ll need to do it 1000 times!
- Also, if they could filter by city, and select all people in a city, that would be great, but how?
I’m new to ScriptCase, so any help would be great!