Hi everyone, I’ve built out an app based around companies applying for a program.
Currently, the process is:
-
Through a public page, the company registers as a User Role (“Company Login”)
-
Once logged in, the company sees a Company Dashboard, where they can fill out an application, or see previous applications.
-
When a company creates a new application, it sends information to 2 separate tables.
The first page of the application creates a new company record in the “Applied Companies” table, includingCompany Name
.
The rest of the application pages create a new application record in the “All Applications” table, which is connected to the Applied Company record (many/applications to one/company).
This issue is that the company User Role is not being automatically associated with the Company Details record (primary field is “Company Name”).
I have a child connected field in the Company User Role table (“Associated Company”) that is connected to the parent field (Company Name) in the Applied Companies table, but I can’t figure out a way to automatically associate them.
When I manually adjust the User Role field Associated Company, the dashboard works fine and a company can see their associated applications.
I’m sure I’m missing something obvious- any suggestions?