Alerts in APEX forms based on PL/SQLProcess
407853Mar 20 2009 — edited Mar 21 2009Hi All,
It there a way to get an Alert based on a PL/SQL process?
Like the "good old Oracle Forms".
examine this:
BEGIN
if 2 > 1 then
ALERT('Two is more then one', Ok);
else
null;
end if;
end
It should popup a Windows messagebox just like the one with The Delete box.
So not based on an item value but on submit.
In my case the user is adding a value in a text field with Submits when Enter Pressed
This action is the basis for populating a select list and some processes are start running.
In one of the processes is select values from the database and that should popup a messagebox.
I don''t mean a validation because APEX cannot skip the validation.
I hope i'm cleare enough
Hugo Perfors
developer