Hello All,
I need to call a JS function to open a popup, I'm in the middle of a PL/SQL Process that I use:
V_ERRO_VALIDACAO := 'S';
--
IF V_ERRO_VALIDACAO = 'S' THEN
HTP.p ('<script type="text/javascript">');
HTP.p ('javascript:popUp2(''f?p=&APP_ID.:21:&SESSION.::NO::'', 700, 400);');
HTP.p ('</script>');
END IF;
--
But it's not working.
It's hard coded for testing purposes
Is there a way to call the popup in the process?
Thanks,
Alan Martini.