The $SRV_ENQ_INFO routine returns information about all IMOD enqueues that are currently held.
Syntax
Use this syntax:
CALL $SRV_ENQ_INFO
Parameters
No operands are expected and none should be passed.
Returned Data
Data is returned on the stack. Each line represents one enqueue for one IMOD. The first character in each record is the delimiter character. This character is used to separate the returned fields as listed below:
Return String
The return string is null.
Usage Note
Since both the QNAME and RNAME fields may contain embedded delimiters, care should be exercised in parsing the returned string. See the following Example for a recommended method.
Example
call $srv_enq_info
limit = queued( )
do i = 1 to limit
parse pull 1 d +1 type (d) . +1 qname +8 . +1 rname +256 ,
own (d) level (d) . (d) imodid (d) .
end i
| Copyright © 2012 CA. All rights reserved. | Tell Technical Publications how we can improve this information |