码迷,mamicode.com
首页 > 数据库 > 详细

Using Find_Alert and Show_Alert in Oracle Forms

时间:2016-12-25 01:39:37      阅读:410      评论:0      收藏:0      [点我收藏+]

标签:cte   another   sig   and   pos   log   justify   number   技术分享   

Show_alert is used to display model window messages in Oracle Forms and Find_alert searches the list of valid alerts in Form Builder, when the given alert is located, the subprogram returns an alert ID. You must return the ID to an appropriately typed variable, define the variable with a type of Alert.


Example

Show a user-warning alert. If the user presses the OK button, then make REALLY sure they want to continue with another alert.


See also:
Display Modal Window Messages Using Alerts
 
http://www.foxinfotech.in/2015/02/using-single-alert-for-messages-and-confirmation-messages.html


Declare

   al_id       alert;

   al_button   NUMBER;

BEGIN

   al_id := FIND_ALERT (‘user_warning‘);

 

   IF ID_NULL (al_id)

   THEN

      MESSAGE (‘user_warning alert does NOT exist‘);

      RAISE form_trigger_failure;

   ELSE

      /*

      ** Show the warning alert

      */

      al_button := SHOW_ALERT (al_id);

 

      /*

      If user pressed OK (button 1) then bring up another alert to confirm -- button mappings are specified in the alert design

      */

      IF al_button = alert_button1

      THEN

         al_id := FIND_ALERT (‘are_you_sure‘);

 

         IF ID_NULL (al_id)

         THEN

            MESSAGE (‘the alert NAMED:are you sure ? does NOT exist‘);

            RAISE form_trigger_failure;

         ELSE

            al_button := SHOW_ALERT (al_id);

 

            IF al_button = alert_button2

            THEN

               -- do some task

               erase_all_employee_records;

            END IF;

         END IF;

      END IF;

   END IF;

END;

 

Follow to get notifications for tutorials with free source code, thanks.

 

技术分享


Show_Alert and Find_Alert in Oracle Forms

Reviewed by Mridula Joshi on

Mar 22

Rating:
5

 

Using Find_Alert and Show_Alert in Oracle Forms

标签:cte   another   sig   and   pos   log   justify   number   技术分享   

原文地址:http://www.cnblogs.com/quanweiru/p/6218817.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!