Description
|
This function will issue a WTO with the default route code to the z/OS operator console. |
Syntax
|
EVORXWTO('message'[,'{ROLL|NOROLL}'])
where:
message
|
The text message to be sent to the console, between 1 and 126 characters. A zero-length text message or one that is greater than 126 characters will result in an error response. |
ROLL|NOROLL
|
An optional parameter which, when set to "NOROLL", can set a WTO "critical message" descriptor flag to prevent the message from rolling off the console display. "ROLL" is the default. Use caution when using the NOROLL option, as overuse of this option can cause the master console to fill up and prevent any new messages from being displayed. |
|
|
Return Value
|
A variable can be assigned to the command to hold one of these possible return texts:
OK
|
WTO processed successfully |
ERROR IN SPECIFYING WTO FUNCTION
|
error in the command parameters |
|
|
REXX Example
|
x = EVORXWTO('This WTO message will roll off the console')
x = EVORXWTO('This message will not roll off the console','NOROLL')
|