WRITE OPERATOR
| COBOL |
Java |
| EXEC CICS WRITE OPERATOR |
ibmCics.writeOperator |
Syntax
ibmCics.writeOperator(new WriteOperatorOptions()
.text(<Text>)
[.textLength(<TextLength>)]
[.noHandle(true)]
);
Parameters
- <Text>
- The message to be sent to.
- <TextLength>
- Optional length of the message.
- noHandle
- Optional Boolean. If set to true, exceptions created by this command will be ignored.
Examples
| COBOL |
Java |
EXEC CICS
WRITE OPERATOR
TEXT('Hello World')
TEXTLENGTH(50)
NOHANDLE
END-EXEC
|
ibmCics.writeOperator(new WriteOperatorOptions()
.text("Hello World")
.textLength(50)
.noHandle(true)
);
|