SEND (APPC) command
Sends data and control information to a conversation partner in an APPC conversation. In Smalltalk, the parameters of the SEND (APPC) command are contained in two classes: CICSAppcsend and CICSAppcsendResult.
See CICS Application Programming Reference for the syntax of the command and a description of the parameters.
Defined instance methods
Parameters supplied to CICS in CICSAppcsend
 
Parameter
Instance method
Mode
Type
Notes/exceptions
CONFIRM
confirm
Input
Switch
 
CONVID(name)
convid:
Input
Fixed(4)
 
FROM(data-area)
from:
Input
Variable
 
INVITE
invite
Input
Switch
 
LAST
last
Input
Switch
 
LENGTH(data-value)
length:
Input
Binary 16
 
WAIT
wait
Input
Switch
 
Parameters returned by CICS in CICSAppcsendResult
 
Parameter
Instance method
Mode
Type
Notes/exceptions
RESP
resp
Output
Fixed(2)
Inherited from CICSResult.
RESP2
resp2
Output
Fixed(2)
Inherited from CICSResult.
STATE(cvda)
state
Output
Binary 32
 
Example
Sends data to conversation CON1.
| result |
result := CICS appcsend
convid: 'CON1';
from: 'This is written in Smalltalk!';
length: 29;
exec.
Last modified date: 07/09/2019