FREE command
Returns an APPC session to CICS when a transaction owning it no longer requires it. The session can be allocated for use by other transactions. In Smalltalk, the parameters of the FREE command are contained in two classes: CICSAppcfree and CICSAppcfreeResult.
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 CICSAppcfree
 
Parameter
Instance method
Mode
Type
Notes/exceptions
CONVID(name)
convid:
Input
Fixed(4)
 
Parameters returned by CICS in CICSAppcfreeResult
 
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
Frees APPC conversation CON1.
| result |
result := CICS appcfree
convid: 'CON1';
exec.
Last modified date: 07/09/2019