Dialogs Component
Fnd_Dlg_Confirm
Fnd_Dlg_Confirm (message{; OK button{; Cancel button}})
Parameters
| Parameter | Type | Description |
|---|---|---|
| message | Text | Message to display |
| OK button | Text | OK button text “or “*” for localized “OK” (optional) |
| Cancel button | Text | Cancel button text or “*” for localized “Cancel” (optional) |
Description
The Fnd_Dlg_Confirm routine replaces 4D’s CONFIRM command. You can pass titles for the OK and Cancel buttons. If you leave the OK button parameter empty or pass “*”, “OK” (or its localized equivalent) will be used. If you specify “*” for the Cancel button parameter, the localized version of “Cancel” will be used.
Fnd_Dlg_Confirm ("Are you sure you want to delete the record?";"Delete")
Extracted source text
Fnd_Dlg_Confirm (message{; OK button{; Cancel button}})
Parameter Type Description
message Text Message to display
OK button Text OK button text “or “*” for localized “OK” (optional)
Cancel button Text Cancel button text or “*” for localized “Cancel” (optional)
The Fnd_Dlg_Confirm routine replaces 4D’s CONFIRM command. You can pass titles for the OK
and Cancel buttons. If you leave the OK button parameter empty or pass “*”, “OK” (or its localized
equivalent) will be used. If you specify “*” for the Cancel button parameter, the localized version of
“Cancel” will be used.
Fnd_Dlg_Confirm ("Are you sure you want to delete the record?";"Delete")