Previous Topic: GRPLIST CommandNext Topic: LIST Command


GRPLISTV Command

The GRPLISTV command places a list of all variable group names directly into a REXX variable.

This command has the following format:

ADDRESS GLV 'GRPLISTV rexxstem'
GRPLISTV

Specifies the name of the REXX stem variable (rexxstem) that will contain the return information for the command.

Example:

The following example lists the variable groups in use:

ADDRESS GLV 'GRPLISTV rexxstem'
say 'These are the variable groups currently in use:'
do i=1 to rexxstem.0
   say rexxstem.i
end