DELETEQ TS command
Deletes all the temporary data associated with a temporary storage (TS) queue. In Smalltalk, the parameters of the DELETEQ TS command are contained in two classes: CICSDeleteqts and CICSDeleteqtsResult.
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 CICSDeleteqts
 
Parameter
Instance method
Mode
Type
Notes/exceptions
QUEUE(name)
queue:
Input
Fixed(8)
 
SYSID(systemname)
sysid:
Input
Fixed(4)
Remote systems only
Parameters returned by CICS in CICSDeleteqtsResult
 
Parameter
Instance method
Mode
Type
Notes/exceptions
RESP
resp
Output
Fixed(2)
Inherited from CICSResult.
RESP2
resp2
Output
Fixed(2)
Inherited from CICSResult.
Example
Deletes a temporary storage queue.
| result |
result := CICS deleteqts
queue: 'TSQUEUE1';
exec.
Last modified date: 05/12/2020