Hi Expert,
I would like to use the existing forms to call the new view but I add the condition "Show_View('View_name');" in the button trigger (WHEN-BUTTON-PRESSED). Then, no function can show the view. The below of my script detail:
-------------------------------------------------------------------------------------------------
Button (WHEN-BUTTON-PRESSED)
BEGIN
IF NOT FORM_SUCCESS THEN
raise FORM_TRIGGER_FAILURE;
end IF;
Show_View('CANVAS136');
EXCEPTION
when FORM_TRIGGER_FAILURE then
raise;
when OTHERS then
emessage(SQLERRM);
raise FORM_TRIGGER_FAILURE;
END;
------------------------------------------------------------------------------------------------
Thanks,
Andy
