First Define the Alert in Form:
DECLARE
al_id Alert;
al_button NUMBER;
BEGIN
al_id := Find_Alert('
al_button := Show_Alert(al_id);
IF al_button = ALERT_BUTTON1 THEN -- Here Alert_button1 value is OK
<< Condition >>
null;
ELSE
<< Condition >>
RAISE Form_trigger_Failure;
END IF;
END;
No comments:
Post a Comment