Dialogs Component

Fnd_Dlg_Alert

Fnd_Dlg_Alert (message{; OK button})

Legacy manual page 88

Parameters

ParameterTypeDescription
messageTextMessage to display
OK buttonTextOK button text or “*” for localized “OK” (optional)

Description

The Fnd_Dlg_Alert routine replaces 4D’s ALERT command. You can either pass a value to the OK button parameter, which will be used in place of the OK button. Otherwise, “OK” will be used or the localized version of “OK” will be used.

Fnd_Dlg_Alert ("The selected record cannot be deleted.")
Extracted source text
            Fnd_Dlg_Alert (message{; OK button})

              Parameter                 Type            Description
              message                   Text            Message to display
              OK button                 Text            OK button text or “*” for localized “OK” (optional)

            The Fnd_Dlg_Alert routine replaces 4D’s ALERT command. You can either pass a value to the OK
            button parameter, which will be used in place of the OK button. Otherwise, “OK” will be used or the
            localized version of “OK” will be used.
              Fnd_Dlg_Alert ("The selected record cannot be deleted.")