hi,
i have two tables. one is called campus_profile which has the campus_id and user_id. this shows which user is allowed to access which campus.
i also have another table which is called campus_master. this tables hold the name of the campus for each campus_id.
my question is,when i create a form and display it from campus profile it shows which user is assigned to which campus. but since this table only have campus_id, there’s no name to show at a field. it’s not appropriate to show the campus_key since it’s not giving any meaning to user.
so i can link it by query which is by linking the campus_id between these tables.
but from what im seeing, forms only allow reading from one table. how do i add another field and the data would be coming from my campus_master table. i can create a view, but it wont be easily to update. i need to update since i want to allow or restrict user from a certain campus access.
any ideas?