Previous Topic: GET CommandNext Topic: GRPLISTV Command


GRPLIST Command

The GRPLIST command places a list of all variable group names into the external data queue, making that information available to any REXX program.

This command has the following format:

ADDRESS GLV 'GRPLIST'

Example:

The following REXX statements list the variable groups in use:

SAY 'These are the variable groups currently in use:'
ADDRESS GLV 'GRPLIST'
do while queued() > 0
   parse pull line
   say line
end