Appendix B. CICS Smalltalk classes : WRITEQ TS command

WRITEQ TS command
Stores temporary data (records) in a temporary storage (TS) queue in main or auxiliary storage. In Smalltalk, the parameters of the WRITEQ TS command are contained in two classes: CICSWriteqts and CICSWriteqtsResult.
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 CICSWriteqts
 
Parameters returned by CICS in CICSWriteqtsResult
 
Inherited from CICSResult.
Inherited from CICSResult.
Example
Builds a temporary storage queue using the WRITEQ TS command. MyKsdsFile is a subclass of OsPtr.
| newRecord result |
newRecord := MyKsdsFile new.
newRecord lastName: 'Record'.
newRecord firstName: 'New'.
newRecord city: 'NewCounty'.
newRecord state: 'NS'.
result := CICS writeqts
queue: 'TSQUEUE';
from: newRecord;
length: 80;
exec.