I have a setup table (ICSetup) which obviously should have only one record. When the table is empty and a graph tries to get the setup record, it is supposed to throw an exception to the screen and give the user the option to redirect to the setup form. This is not working for me. I debugged the code and the constructor call is creating the exception, but nothing is coming back to the screen. It just hangs.
Here is the DAC:

You can see that I have setup the PXPrimaryGraph to ICSetupMaint. That screen opens with no issue.
In the InterTenantMaint graph, I have a PXSelect as follows:
public PXSetup<ICSetup> Setup;
The constructor for the graph is:
public InterTenantMaint()
{
try
{
ICSetup setup = Setup.Current;
}
catch (Exception e)
{
string joe = e.Message;
}
}
When you open the InterTenantMaint screen, it just hangs.
In order to debug, I added a try-catch to see what the error is. When the try executes the e.Message value is as I would expect.

If you open the ICSetupMaint screen, it looks fine. I made sure not to save a record on that screen so that it would be empty for this test.
I implemented this code exactly like the Acumatica Training code.
Why is the exception not coming back to the screen with the normal dialog to allow the user to go to the setup form? The screen just hangs with nothing displayed and the “circle” spins forever. Note that I only added the try-catch to get the error. Normally, the code just has the line in the try statement.
Thanks,
Joe