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