Previous Topic: ADDRESS SQL CommandsNext Topic: ADDRESS SYSVIEWE Return Codes


ADDRESS SYSVIEWE—Interface to CA SYSVIEW

The ADDRESS SYSVIEWE host environment provides a direct interface to the CA SYSVIEW product without requiring the use of CA GSS. The ADDRESS SYSVIEWE host environment sends commands directly to CA SYSVIEW and returns output from those commands directly to the OPS/REXX external data queue.

Note: For usability and new functionality information, see the example in member SYSVIEWE of the SAMPLES data set.

For example, the following code:

ADDRESS SYSVIEWE
"COMMAND(LINKLIST)"
"COMMAND(END)"
do while QUEUED() > 0
  pull line
  say line
end

Produces output similar to the following:

MGSVX900I CA SYSVIEW 12.5 COPYRIGHT 2009 CA. INC.
 T|SYSVIEW|12.5|LA88|LINKLIST|10/09/09|14:50:31|
 I JOBNAME USER104   ASID 012C  JOBID TSU03947
 I SETNAME LNKLST00            STATUS CURRENT IPL CHK   ALLOCATIONS ACTIVE
 I LLA SEARCH AVAILABLE    EXTENTS 109
 I LIBRARIES  89  ALLOC   0  OPEN   0
 H|CMD|DATASET-NAME                                |XTN|VOLSER|APF|MESSAGE
 D|   |SYS1.LINKLIB                                |  2|MVRB14|APF|
 D|   |SYS1.MIGLIB                                 |  1|MVRB14|APF|
 D|   |SYS1.CMDLIB                                 |  1|MVRB14|APF|

Usage Notes: