SEND command
Writes data to a 3270 logical unit. In Smalltalk, the parameters of the SEND command are contained in two classes: CICSSend and CICSSendResult.
See CICS Application Programming Reference for the syntax of the command and a description of its parameters.
Defined instance methods
Parameters supplied to CICS in CICSSend
| | | | |
ERASE | erase | Input | Switch | |
FROM(data-area) | from: | Input | Variable | |
LENGTH(data-value) | length: | Input | Binary 16 | |
WAIT | wait | Input | Switch | |
Parameters returned by CICS in CICSSendResult
| | | | |
RESP | resp | Output | Fixed(2) | Inherited from CICSResult. |
RESP2 | resp2 | Output | Fixed(2) | Inherited from CICSResult. |
Example
Sends data to the 3270 terminal.
| result aString |
aString := 'Send data to terminal.'.
result := CICS send
from: aString;
length: (aString size);
exec.
Last modified date: 07/09/2019