A script-enabled browser is required for this page to function properly.

SET_ALERT_BUTTON_PROPERTY Built-in

Description

Changes the label on one of the buttons in an alert.

Syntax

PROCEDURE SET_ALERT_BUTTON_PROPERTY
(alert_id ALERT,
button
NUMBER,
property
VARCHAR2,
value
VARCHAR2);

PROCEDURE SET_ALERT_BUTTON_PROPERTY
(alert_nameVARCHAR2,
button
NUMBER,
property
VARCHAR2,
value
VARCHAR2);

Built-in Type unrestricted procedure

Enter Query Mode yes

Parameters

alert_id
 
 Specifies the unique ID (data type ALERT) that Oracle Forms assigns to the alert when it is created. Use FIND_ALERT to return the ID to an appropriately typed variable.
 
alert_name 
 
Specifies the VARCHAR2 name of the alert.
 
button
 
A constant that specifies the alert button you want to change, either ALERT_BUTTON1, ALERT_BUTTON2, or ALERT_BUTTON3.
 
property LABEL
 
Specifies the label text for the alert button.
 
value 
 
Specifies the VARCHAR2 value to be applied to the property you specified.

Usage Notes

If the label specified is NULL, the button's label reverts to the label specified at design time.