DELETEQ TD command
Deletes all the transient data (TD) associated with a particular intrapartition destination (queue). In Smalltalk, the parameters of the DELETEQ TD command are contained in two classes: CICSDeleteqtd and CICSDeleteqtdResult.
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 CICSDeleteqtd
| | | | |
QUEUE(name) | queue: | Input | Fixed(4) | |
SYSID(systemname) | sysid: | Input | Fixed(4) | Remote systems only |
Parameters returned by CICS in CICSDeleteqtdResult
| | | | |
RESP | resp | Output | Fixed(2) | Inherited from CICSResult. |
RESP2 | resp2 | Output | Fixed(2) | Inherited from CICSResult. |
Example
Deletes a transient data queue.
| result |
result := CICS deleteqtd
queue: 'TDQU';
exec.
Last modified date: 05/12/2020