An EXEC TOOLS MESSAGE statement displays a message on the Oracle Forms message line.
EXEC TOOLS MESSAGE (message [severity]);
where:
message |
Specifies the message being passed to Oracle Forms. The message can be a quoted string or a host language variable. |
Severity |
Specifies the severity level of the message being passed to Oracle Forms. |
/*
** Example: Error message for text item
*/
EXEC TOOLS MESSAGE
'Incorrect argument: Expecting item name. Please re-enter.';