RECEIVE (APPC) command
Receives data from the conversation partner on an APPC conversation. In Smalltalk, the parameters of the RECEIVE (APPC) command are contained in two classes: CICSAppcreceive and CICSAppcreceiveResult.
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 CICSAppcreceive
 
Parameter
Instance method
Mode
Type
Notes/exceptions
CONVID(name)
convid:
Input
Fixed(4)
 
MAXLENGTH(data-value)
maxlength:
Input
Binary 16
 
NOTRUNCATE
notruncate
Input
Switch
 
Parameters returned by CICS in CICSAppcreceiveResult
 
Parameter
Instance method
Mode
Type
Notes/exceptions
LENGTH(data-area)
length
Output
Binary 16
 
RESP
resp
Output
Fixed(2)
Inherited from CICSResult.
RESP2
resp2
Output
Fixed(2)
Inherited from CICSResult.
SET(ptr-ref)
set
Output
Variable
 
STATE(cvda)
state
Output
Binary 32
 
Example
Receives data from conversation CON1.
| result state |
result := CICS appcreceive
convid: 'CON1';
maxlength: 1024;
exec.
Last modified date: 07/09/2019