Hello,
I'm building a very simple component. It has one table ("Company") that lists company names, and one table ("User_Company") that associates those company names to users. On the front end the user should be able to add a record to the Company table, and also add records to the "User_Company" table so they can associate their user id with one or more companies.
If I set user permissions to "Create/Edit/Delete" the user can see all of the records in the User_Company table, not just their own. If I only allow "View/Edit/Delete Own" the user can only see their records in the User_Company table -- perfect. But if they access the form to create a new record, they can only see the names of companies in the Company table that they created.
Is there a way around this problem? Basically, I want one layout where the user can only see their records, and a form where the drop-down field allows them to select from all records, not just their own.