SET TDQUEUE command
Changes some of the information of a named transient data queue definition in the control region. The queue definition must not be remote or indirect. In Smalltalk, the parameters of the SET TDQUEUE command are contained in two classes: CICSSettdqueue and CICSSettdqueueResult.
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 CICSSettdqueue
 
Parameter
Instance method
Mode
Type
Notes/exceptions
ATITERMID(data-value)
atitermid:
Input
Fixed(4)
Intrapartition queues only.
ATITRANID(data-value)
atitranid:
Input
Fixed(4)
Intrapartition queues only.
ENABLESTATUS(cvda)
enablestatus:
Input
Binary 32
 
OPENSTATUS(cvda)
openstatus:
Input
Binary 32
Extrapartition queues only.
TDQUEUE(name)
tdqueue:
Input
Fixed(4)
 
TRIGGERLEVEL(data-value)
triggerlevel:
Input
Binary 16
Intrapartition queues only.
Parameters returned by CICS in CICSSettdqueueResult
 
Parameter
Instance method
Mode
Type
Notes/exceptions
RESP
resp
Output
Fixed(2)
Inherited from CICSResult.
RESP2
resp2
Output
Fixed(2)
Inherited from CICSResult.
Example
Disables the TD queue named TDQ1.
result := CICS settdqueue
tdqueue: 'TDQ1';
enablestatus: CVDA_DISABLED;
triggerlevel: 26;
exec.
Last modified date: 07/09/2019