Hi everybody, working with 1.9 The problem: I call a procedure through an ACTION, I suppose this procedure, that call others procedure, or any of the procedure in the chain fail with some errors. How I can debug this, because the TomCat access log file do not say nothing and also catalina log do not say anything. By another side, I can't call the procedure from the sqlplus or sqldeveloper directly, from the moment that the procedures are setting and reading formspider elements, panels and so. Any idea? Thanks in advanced. Regards. |
Hi Jose, You can run Formspider applications in debug mode. There is a button in the menu right next to the regular run button. In this mode you'll see a debug window pop up which displays lots of new information. Also for future reference, while an application is running in debug mode, if you click shift+ctrl and hover over any UI component, the debug window will show you the panel name and the component name. This makes it very easy to find which panel, window or UI component you are looking at. Kind Regards, |
Best solution found. with this list of exception, and using api_application.showpopupmessage('Jose was here') is the best way to control. If you see exception number 1, user_defined exception it is because the error is in the PL/SQL body Regards. null; EXCEPTION WHEN ACCESS_INTO_NULL THEN errortxt := SQLCODE || ' -- ' || sqlerrm; api_application.showpopupmessage(errortxt);
|