Dear all,
I need ur help in this little task:
I have a menu that opens multiple foms but whenever i press exit on the root window i get the following error :
Argument 1 to builtin FIND_FORM cannot be null (FRM-40738)
On debug the error seems to be in the KEY_EXIT trigger on the root form level in the exception block:
declare
status varchar2(1);
begin
if (status = 'O') then
exit_form(NO_VALIDATE);
end if;
*exception*
* when others then*
* *
* *
* exit_form(NO_VALIDATE);*end;