READQ TD command
Reads transient data (TD) from a queue (after which the record is no longer available). In Smalltalk, the parameters of the READQ TD command are contained in two classes: CICSReadqtd and CICSReadqtdResult. 
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 CICSReadqtd
 
|  |  |  |  |  | 
| NOSUSPEND  | nosuspend  | Input  | Switch  |   | 
| QUEUE(name)  | queue:  | Input  | Fixed(4)  |   | 
| SYSID(systemname)  | sysid:  | Input  | Fixed(4)  | Remote systems only  | 
Parameters returned by CICS in CICSReadqtdResult
 
|  |  |  |  |  | 
| 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  |   | 
Example
Reads data from a transient data queue and assigns SET result. 
| result setValue |
 
result := CICS readqtd
               queue: 'TDQU';
               exec.
 
setValue := result set.
Last modified date: 07/09/2019