DEQ command
Causes a resource currently enqueued on by the task to be released for use by other tasks. In Smalltalk, the parameters of the DEQ command are contained in two classes: CICSDeq and CICSDeqResult.
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 CICSDeq
 
Parameter
Instance method
Mode
Type
Notes/exceptions
LENGTH(data-value)
length:
Input
Binary 16
 
RESOURCE(data-value)
resource:
Input
Fixed(255)
 
Parameters returned by CICS in CICSDeqResult
 
Parameter
Instance method
Mode
Type
Notes/exceptions
RESP
resp
Output
Fixed(2)
Inherited from CICSResult.
RESP2
resp2
Output
Fixed(2)
Inherited from CICSResult.
Example
Dequeues the specified resource.
| result |
result := CICS deq
resource: 'RESOURCE1';
length: 9;
exec.
Last modified date: 05/12/2020