CANCEL command
Cancels a previously issued DELAY or START command. In Smalltalk, the parameters of the CANCEL command are contained in two classes: CICSCancel and CICSCancelResult.
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 CICSCancel
 
Parameter
Instance method
Mode
Type
Notes/exceptions
REQID(name)
reqid:
Input
Fixed(8)
This is a required parameter.
SYSID(name)
sysid:
Input
Fixed(4)
Remote systems only
TRANSID(name)
transid:
Input
Fixed(4)
 
Parameters returned by CICS in CICSCancelResult
 
Parameter
Instance method
Mode
Type
Notes/exceptions
RESP
resp
Output
Fixed(2)
Inherited from CICSResult.
RESP2
resp2
Output
Fixed(2)
Inherited from CICSResult.
Example
Cancels a started task named CSTASKID.
| result |
result := CICS cancel
reqid: 'CSTASKID';
exec.
Last modified date: 05/11/2020