Reference fields and context menu do not work when opening formIssue When opening up a new form, reference fields and menus do not workReleaseAll supported releasesCauseConsole Error is thrown while the form is loading: ResolutionIn the error stack, you will see a hint as to where the error is coming from. In this case if you look at the above image, you can pick out "ui_policy_onLoad" and "ui_policy" in multiple places. This could also point to a Client Script instead of a policy. This lets us know that the error is caused by a UI Policy on the table we are opening. Next, you should open the UI Policies for this table and search for the one that contains a script. Then narrow it down by searching for the error (ex. Uncaught ReferenceError: testFunction is not defined). in this example, you would search for the script that contains "testFunction". Once you have located the bad policy, you need to review the code and make the appropriate changes to fix it.